Hi
I'm writing a launcher. This is the code:
appHandle = execute executable("debug.exe","","")
while executable running(appHandle)=1
if spacekey()=1 then stop executable appHandle
endwhile
According to the help file this should work, but it does not.
I also tried to not to store the handle in the variable, writing just execute executable("debug.exe","","") then the compiler stopped and said that the command could not be understood.
The above code goes thru the compilation process, but nothing happens.
I'm using version 1.0761
and windows7 64 bit. I know that windows7 have diffrent restrictions or ,how I should say it, about how applications are executed then prior windows releases. Could that maybe have something to do with it?