Project64 2.2
Posted: Mon Jul 06, 2015 9:09 pm
Hi,
is somebody running Project64 2.2 with mGALAXY?
I tried it with several scripts:
http://www.mgalaxy.com/forum/index.php?topic=435.0
and
Thanks for your help.
Marc
is somebody running Project64 2.2 with mGALAXY?
I tried it with several scripts:
http://www.mgalaxy.com/forum/index.php?topic=435.0
and
Code: Select all
HotKeySet("{ESC}", "Terminate")
$path = "C:\Programme\Project64 2.2\"
$app = "Project64.exe"
If $CmdLine[0] == 1 Then
$PID = Run( $path & $app & ' "' & $CmdLine[1] & '"', $path)
While 1
Sleep(100)
WEnd
EndIf
Func Terminate()
While ProcessExists ( $PID )
ProcessClose ( $PID )
WEnd
Exit 0
EndFunc
Marc