| View previous topic :: View next topic |
| Author |
Message |
Auto run Guest
|
Posted: Fri May 16, 2008 11:26 pm Post subject: run Autohotkey when another app is opened |
|
|
I am trying to get DVD decrypter to run automaticall when i insert a dvd.
Can you make Autohotkey exectute when a dvd is inserted or when an application is opened?
Thanks if you need any more info just let me know  |
|
| Back to top |
|
 |
Auto run Guest
|
Posted: Sat May 17, 2008 12:01 am Post subject: Update |
|
|
I have tried adding my little app to the autorun list but when it tries to execute this message comes up
Info - H:\ is my dvd drive
The Script File "H:\"" does not exist. Create it now?
Yes No options
No just closes the app
and Yes just causes another message telling me H:\ (My dvd drive) is read only which it is |
|
| Back to top |
|
 |
keybored
Joined: 18 Jun 2006 Posts: 94 Location: Phoenix, AZ
|
Posted: Sat May 17, 2008 7:14 am Post subject: a start |
|
|
I tried IfExist and it recognized when I put a dvd in.
| Code: | loop
{
Sleep, 5
IfExist, H:\
MsgBox, The drive exists.
}
return |
|
|
| Back to top |
|
 |
|