FullScreen57 wrote:Samkuek, Thanks for the information. Being a newbie to the scripting process can you please point me to someplace where I can start learning from (Kill processes - Start navigation program - Restart processes) .
Samkuek,
1. Your post with instrucions to download Mortscript mnaul and sample script has disappeared from here
2. I tried using your instructions and it works ewxcept when exiting Primo. The screen gets stuck on "Exiting, please wait..." and the PNA freezes up
3. My script is:
#Errorlevel("warn")
#If(WndExists("NAVI"))
# Show("NAVI")
# Exit
#EndIf
#Kill explorer.exe
If(ProcExists("explorer.exe"))
Kill("explorer.exe")
EndIf
If(ProcExists("YFLoader.exe"))
Kill("YFLoader.exe")
EndIf
If(ProcExists("Color7MoveShell.exe"))
Kill("Color7MoveShell.exe")
EndIf
Runwait("\SDMMC\Primo\iGO.exe")
If(FileExists("\ResidentFlash2\YFLoader.exe"))
Run("\ResidentFlash2\YFLoader.exe")
EndIf
Sleep(1000)
=====================
Can you please help out?
Thanks a lot.