Carcophan
Joined: 24 Dec 2008 Posts: 768 Location: :noitacoL
|
Posted: Wed Sep 16, 2009 4:25 pm Post subject: |
|
|
Two little things;
1.) #6 = Windows-Key 6 (not the actual number 6, incase you did not know that, no offense).
2.) Your file path does not look complete, what is the file path for the icon you would click on, on the Hard Drive (EG: C:\Program Files\AutoHotke\AU3_Spy.exe)
| Quote: |
The pound sign [#] stands for the Windows key, which is known as a modifier:
#n::
Run Notepad
return
In the final line above, "return" serves to finish the hotkey. However, if a hotkey needs to execute only a single line, that line can be listed to the right of the double-colon. In other words, the return is implicit:
#n::Run Notepad
|
So:
#6::Full_file_path_here ;windowsKey + #6 launches your program |
|