Advertisement
meb

Joined AutoHotKey Script - Alpha

meb
Apr 15th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. ;
  2. ; AutoHotkey Version: 1.x
  3. ; Language: English
  4. ; Platform: Win9x/NT
  5. ; Author: A.N.Other <myemail@nowhere.com>
  6. ; http://morethanknitting.blogspot.com/2014/07/gimp-autosave-hack.html
  7. ; Script Function:
  8. ; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
  9. ;
  10.  
  11. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  12. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  13. ; SetWorkingDir C:\m3bsPortableApps-Directory\PortableApps\DreamweaverPortable 6\DreamweaverPortable.exe
  14. ; Ensures a consistent ;
  15. ; starting directory.
  16.  
  17.  
  18.  
  19. #Persistent
  20.  
  21. ; Save the file every one minute.
  22. SetTimer, AutoSave, 00600, On
  23.  
  24. ; Save the file every one minute.
  25. SetTimer, AutoSave, 8000, On
  26.  
  27.  
  28. AutoSave:
  29. IfWinActive, ahk_class gdkWindowToplevel
  30. Send {Blind}^s
  31. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement