Build Your Own Arcade Controls Forum

Main => Software Forum => Topic started by: jimmy2x2x on May 15, 2011, 02:08:18 pm

Title: Solved: Help with simple AHK script ;)
Post by: jimmy2x2x on May 15, 2011, 02:08:18 pm
This is the first time I'm playing around with AHK and could use a little help.

I want to run demul with 2 commandline params, then force full screen via ALT+ENTER, thats it.

this is what I have:

Run, demul.exe %1% %2%
Sleep, 10000
SendInput, {LAltdown}{Enter}{LAltup}
Process, WaitClose, demul.exe

demul runs with the supplied parameters fine, but does not force full screen - any ideas?

Thanks

EDIT: solved

Run, demul.exe %1% %2%
Sleep, 12000
SendInput, {Alt Down}{Enter}{Alt Up}

;)