Sat Nov 27, 2010 3:04 am
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) .
Sat Nov 27, 2010 3:06 am
Sat Nov 27, 2010 3:47 am
Sat Nov 27, 2010 10:50 am
FullScreen57 wrote: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.
Sat Nov 27, 2010 2:53 pm
powertech wrote:anyone can help after i put the transformer PAPAGO.DBP in maps folder my chinese font become square square. do a hard reset also can not help, my devise look like these
ROM Version: V1.1.010.01.15.2G
APP Version : V1.2.11.09.12.16
From Resinfo
MTK Apollo 5.0
Windows CE 5.0.1400
56.9MB Ram
ARM1176JZ-S MT3351 (468MHz)
480x272 pixels, 65536 color
Sat Nov 27, 2010 4:41 pm
Sat Nov 27, 2010 6:15 pm
powertech wrote:can provide more detail on it
Thank
Sun Nov 28, 2010 12:39 am
Sun Nov 28, 2010 2:27 am
powertech wrote:my mistake after i put some crate navione folder in the memory they show up now everything works,
taiwan transformer ( the tranformer files corrupted the Chinese font again ) :wallbash::wallbash:
only the gui is a bit plane
thank again
Mon Nov 29, 2010 12:09 am
Sat Dec 04, 2010 1:17 pm
samkuek wrote:Try either of the following option, (some program need explorer to run first and i assume you are sure that your PND's skin application name is "YFLoader.exe)":
1. Dont kill the explorer. let it run in the background but will take up some RAM resource
or
2. If you kill explorer, recall it when navigation program exit. For example, add the following instruction after runwait :
If(not ProcExists("explorer.exe"))
Run("\Windows\explorer.exe")
sleep(1000)
EndIf
Do it will care and at your own risk. Good luck
Fri Dec 10, 2010 11:52 pm
FullScreen57 wrote:Samkuek - Thanks for all your help. Your last post made me recheck everything and discover that my PND's skin application was not YFLoader.exe but Color7MoveShell.exe
Once I made the change, Primo now exits safely (though it does take its time). Once again Thanks, Muchas Gracias, ....
My working script
===========
If(ProcExists("YFLoader.exe"))
Kill("YFLoader.exe")
EndIf
If(ProcExists("Color7MoveShell.exe"))
Kill("Color7MoveShell.exe")
EndIf
Runwait("\SDMMC\Primo\iGO.exe")
If(FileExists("\ResidentFlash2\YFAPP\Color7MoveShell\Color7MoveShell.exe"))
Run("\ResidentFlash2\YFAPP\Color7MoveShell\Color7MoveShell.exe")
EndIf
Sleep(1000)
Fri Jan 21, 2011 10:57 am
Thu Feb 10, 2011 5:53 am
Sun Feb 13, 2011 2:53 pm