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}
