Messages in this topic - RSS

Home ? Tips & Tricks ? Autosave Feature

the topic is closed
06/02/2015 22:23:19

interested
interested
Posts: 3
Hi Everyone!

I'm ultra absent minded so I always get like 1 hour+ into making something and forget to save, and of course it crashes... My brother made me something that helps. It uses AutoHotKey

http://www.autohotkey.com/

Then he wrote a little script on there that Auto saves every 5 minutes(300,000 Miliseconds)! Now it doesn't always work because sometimes i'm in record mode and Ctr+S doesn't work but for the most part it's really helpful!

Here is a link to a folder that contains the .exe file you can run that automatically presses Ctr+S every 5 minutes it also has the AutoHotKey script file so if you want to change the time you can download AutoHotKey and load the modified script.

<link removed by admin>

The script looks like this:


#Persistent

SetTimer, Autosave, 300000 <----- this is the value you change for longer or shorter intervals. it's in Milliseconds.
return

Autosave:
SetTitleMatchMode, 2
IfWinActive, Muvizu
{
Send ^s
}
IfWinNotActive, Muvizu
{
WinWaitActive, Muvizu
Send ^s
}
return


Goodluck!
edited by Jamie on 09/02/2015
permalink
the topic is closed

Home ? Tips & Tricks ? Autosave Feature