01-16-2010, 10:41 PM
|
|
PPCGeeks Regular
Offline
Location: TN
|
|
Join Date: Sep 2007
Posts: 139
Reputation: 142
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
|
Re: How to get iGo8 run on TP2 with TTS enable and 2009 NA Maps (step by step guide)
Quote:
Originally Posted by itsachirpthing
I have a custom mort script that will turn off TF3D, run CleanRam (I have custom process enabled to exit Opera and Tmail within CleanRam), then run Igo8. Once you are finished with Igo and you exit, TF3D will restart. This took some testing, but this works everytime with the high quality TTS voices. I have had no issues. I have posted the code below, this will work on your device providing that you install CleanRam to your "device" and your IGo program is listed as "\storage card\iGO8\igo8.exe". These HQ TTS voice issues baffled me for months, but now they work consistently without a soft reset.
Again this code will stop TF3D, Run CleanRam, Start Igo... then when you exit iGo it will restart TF3D.
manilastate=ProcExists("manila.exe")
If (manilastate)
Kill("biotouch.exe")
RegWriteDword ("HKLM","Software\Microsoft\Today\Items\TouchFL O 3D","Enabled",0)
RedrawToday
endif
RunWait("\program files\htcaddicts cleanram\htcaddicts_cleanram.exe")
RunWait("\storage card\iGO8\igo8.exe")
Sleep(5000)
Kill("Repllog.exe")
While ( ProcExists("igo8.exe") )
IdleTimerReset
Sleep(500)
EndWhile
If (manilastate)
RegWriteDword ("HKLM","Software\Microsoft\Today\Items\TouchFL O 3D","Enabled",1)
RedrawToday
Run("\windows\biotouch.exe")
endif
I have attached the script to run with mort script. I hope others can benfit as well. Good luck and enjoy!
|
I have updated my script to "sense" rather than "TouchFLO 3D". This will work on the newer version of manila. The other script was used in my stock sprint ROM. Thanks for the added tip on the CleanRAM DaddyLongLegs. Lets keep this thread alive, and maybe we can find a concrete solution to something that has baffled me for months. Thanks!
|