Disable autosaving / restore set Ableton Live 10

Share your favorite Ableton Live tips, tricks, and techniques.
Post Reply
fuse*
Posts: 2
Joined: Tue Apr 10, 2018 10:32 am

Disable autosaving / restore set Ableton Live 10

Post by fuse* » Tue Apr 10, 2018 10:39 am

Hi to all,

i'm looking for a way to disable the annoying pop-up on exit and when i open Ableton Live 10 (do you want save / restore last project).

I'm setting a pc for a multimedia installation and i want open my programs (included Ableton) when the machine power on, and quit without saving when the machine power off. No human interaction required (just the power button of my pc).

I have been looking for days, but I have not found any satisfactory answer :cry:

Thanks in advance.
Matteo

Florian-Schneider
Posts: 14
Joined: Sun Dec 23, 2012 10:12 pm

Re: Disable autosaving / restore set Ableton Live 10

Post by Florian-Schneider » Tue Apr 10, 2018 6:53 pm

Hi Matteo,

if you can program a little (or know someone who can), AutoIT might help.
It is a scripting language for GUI manipulation and other things.

I'm afraid that I am no big help in terms of scripting, since I only used
downloaded scripts.

Flo
HW: XMG P507/2017 (1TB SSD, 2x2TB HDD, 32GB RAM, W10Pro), AKAI MPK88, Novation Impulse 49, Push, RME Babyface
SW: Suite 10

Pitch Black
Posts: 6722
Joined: Sat Dec 21, 2002 2:18 am
Location: New Zealand
Contact:

Re: Disable autosaving / restore set Ableton Live 10

Post by Pitch Black » Wed Apr 11, 2018 7:12 am

What about using a demo version of Live, which has saving disabled by default?

I don’t know for sure if this would fit your needs but maybe worth a try?
MBP M1Max | Sonoma 14.7 | Live 12.1 | Babyface Pro FS | Push 3T | clump of controllers
Soundcloud
Ableton Certified Trainer

fuse*
Posts: 2
Joined: Tue Apr 10, 2018 10:32 am

Re: Disable autosaving / restore set Ableton Live 10

Post by fuse* » Thu Apr 12, 2018 1:42 pm

Pitch Black wrote:What about using a demo version of Live, which has saving disabled by default?

I don’t know for sure if this would fit your needs but maybe worth a try?
I had already tried, but the problem is the activation pop-up appear at ableton start up.
Florian-Schneider wrote:Hi Matteo,

if you can program a little (or know someone who can), AutoIT might help.
It is a scripting language for GUI manipulation and other things.

I'm afraid that I am no big help in terms of scripting, since I only used
downloaded scripts.

Flo
Thank you! I used your advice and it works! It is very crazy that is necessary to write a windows script with a dedicated script language (what happen in Mac OS, Linux?), just to auto-open an Ableton project:?

I attach here the few AutoIT lines of code. I created a win shortcut to avoid an absolute path.

Code: Select all

; Launch Ableton
ShellExecute("Ableton.lnk", "", @WorkingDir)

Sleep(30000)

Send("{RIGHT}")
Send("{ENTER}")

Post Reply