|
||||
Re: iGuidance MortScript to get around TTS not always working
I found out that instead of trying to close all of the apps that use tmail.exe that you can actually CLOSE (not kill) tmail.exe. This way you dont have to try and close 9 apps that use it =)
Same thing for AudioManager_eng.exe - you can close it. I am about to test this out: RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",0) RedrawToday While ( ProcExists("manila.exe") ) Sleep(500) EndWhile RegWriteDword ("HKLM","Software\Microsoft\Today\Items\HTC Sense","Enabled",1) ErrorLevel("syntax") # Close ActiveSync While ( WndExists( "ActiveSync" ) ) Close("ActiveSync") Sleep(500) EndWhile While ( ProcExists("repllog.exe") ) Kill("repllog.exe") Sleep(500) EndWhile # Close text messageing, SMS / MMS, Outlook E-mail, guilette.net, etc... If ( ProcExists( "tmail.exe" ) ) Close("tmail.exe") Sleep(500) EndIf While ( ProcExists("tmail.exe") ) Kill("tmail.exe") Sleep(500) EndWhile # Close HTC Music Player If ( ProcExists( "AudioManager_eng.exe" ) ) Close("AudioManager_eng.exe") Sleep(500) EndIf While ( ProcExists("AudioManager_eng.exe") ) Kill("AudioManager_eng.exe") Sleep(500) EndWhile # Close Album & AlbumSearcher While ( WndExists( "Album" ) ) Close("Album") Sleep(500) EndWhile While ( ProcExists("HTCAlbum.exe") ) Kill("HTCAlbum.exe") Sleep(500) EndWhile While ( ProcExists("AlbumSearcher.exe") ) Kill("AlbumSearcher.exe") Sleep(500) EndWhile # Close Contacts While ( WndExists( "Contacts" ) ) Close("Contacts") Sleep(500) EndWhile While ( ProcExists("poutlook.exe") ) Kill("poutlook.exe") Sleep(500) EndWhile # Close Wi-Fi Router While ( WndExists( "Mobile Wi-Fi Router" ) ) Close("Mobile Wi-Fi Router") Sleep(500) EndWhile While ( ProcExists("CMInternetSharing.exe") ) Kill("CMInternetSharing.exe") Sleep(500) EndWhile # Close Communications Manager While ( WndExists( "Comm Manager" ) ) Close("Comm Manager") Sleep(500) EndWhile While ( ProcExists("CommManager.exe") ) Kill("CommManager.exe") Sleep(500) EndWhile # Close Opera While ( WndExists( "VZW Today" ) ) Close("VZW Today") Sleep(500) EndWhile While ( ProcExists("Opera9.exe") ) Kill("Opera9.exe") Sleep(500) EndWhile # Close Task Manager While ( WndExists( "Task Manager" ) ) Close("Task Manager") Sleep(500) EndWhile While ( ProcExists("TaskMgr.exe") ) Kill("TaskMgr.exe") Sleep(500) EndWhile # Close File Explorer While ( WndExists( "File Explorer" ) ) Close("File Explorer") Sleep(500) EndWhile While ( ProcExists("fexplore.exe") ) Kill("fexplore.exe") Sleep(500) EndWhile # Close Excel While ( WndExists( "Excel Mobile" ) ) Close("Excel Mobile") Sleep(500) EndWhile While ( ProcExists("pxl.exe") ) Kill("pxl.exe") Sleep(500) EndWhile RunWait("\Storage Card\IGO8\iGO8.exe") While ( ProcExists("iGO8.exe") ) Sleep(500) EndWhile RedrawToday Last edited by nayr1482; 01-30-2010 at 03:26 PM. |
|
||||
Re: iGuidance MortScript to get around TTS not always working
I don't think it is good putting kills in the loops.
__________________
EVO 4G, Stock Sprint ROM, ProClip in Car, Sony HBH-300.
|
|
||||
Re: iGuidance MortScript to get around TTS not always working
Hi, here is my latest...this seems to be working 100% of the time. I am still tweaking (notice I removed the while procexists after running igo8 - i found it isn't necessary - seems the RunWait command pauses there until you exit whatever app you call).
I took all of the kill commands out (for now). So far haven't had any issues...but of course have to keep testing. If ( ProcExists("manila.exe") ) RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",0) RedrawToday While ( WndExists( "Start" ) ) Sleep(500) EndWhile RegWriteDword ("HKLM","Software\Microsoft\Today\Items\HTC Sense","Enabled",1) EndIf ErrorLevel("syntax") If ( ProcExists("repllog.exe") ) Close("ActiveSync") While ( WndExists( "ActiveSync" ) ) Sleep(500) EndWhile EndIf If ( ProcExists( "tmail.exe" ) ) Close("Outlook E-mail") While( WndExists( "Outlook E-mail") ) Sleep(500) EndWhile EndIf If ( ProcExists( "tmail.exe" ) ) Close("Messaging") While( WndExists( "Messaging") ) Sleep(500) EndWhile EndIf If ( ProcExists("HTCAlbum.exe") ) Close("Album") While ( WndExists( "Album" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("poutlook.exe") ) Close("Contacts") While ( WndExists( "Contacts" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("CommManager.exe") ) Close("Comm Manager") While ( WndExists( "Comm Manager" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("TaskMgr.exe") ) Close("Task Manager") While ( WndExists( "Task Manager" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("fexplore.exe") ) Close("File Explorer") While ( WndExists( "File Explorer" ) ) Sleep(500) EndWhile EndIf RunWait("\Storage Card\IGO8\iGO8.exe") RedrawToday |
|
||||
Re: iGuidance MortScript to get around TTS not always working
added Opera back in since it seems that was one of the main issues (at least for me)
If ( ProcExists("manila.exe") ) RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",0) RedrawToday While ( WndExists( "Start" ) ) Sleep(500) EndWhile RegWriteDword ("HKLM","Software\Microsoft\Today\Items\HTC Sense","Enabled",1) EndIf ErrorLevel("syntax") If ( ProcExists("repllog.exe") ) Close("ActiveSync") While ( WndExists( "ActiveSync" ) ) Sleep(500) EndWhile EndIf If ( ProcExists( "tmail.exe" ) ) Close("Outlook E-mail") While( WndExists( "Outlook E-mail") ) Sleep(500) EndWhile Close("Messaging") While( WndExists( "Messaging") ) Sleep(500) EndWhile EndIf If ( ProcExists( "tmail.exe" ) ) EndIf If ( ProcExists("HTCAlbum.exe") ) Close("Album") While ( WndExists( "Album" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("poutlook.exe") ) Close("Contacts") While ( WndExists( "Contacts" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("CommManager.exe") ) Close("Comm Manager") While ( WndExists( "Comm Manager" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("TaskMgr.exe") ) Close("Task Manager") While ( WndExists( "Task Manager" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("fexplore.exe") ) Close("File Explorer") While ( WndExists( "File Explorer" ) ) Sleep(500) EndWhile EndIf If ( ProcExists("Opera9.exe") ) Close("OperaNetwork") While ( WndExists( "OperaNetwork" ) ) Sleep(500) EndWhile Close("Opera") While ( WndExists( "Opera" ) ) Sleep(500) EndWhile Close("VZW Today") While ( WndExists( "VZW Today" ) ) Sleep(500) EndWhile EndIf RunWait("\Storage Card\IGO8\iGO8.exe") RedrawToday |
|
||||
Re: iGuidance MortScript to get around TTS not always working
seems to be so far. i am going to continue testing it, etc...
from my testing it seems that Opera 9.5 has been the biggest problem for me... |
|
||||
Re: iGuidance MortScript to get around TTS not always working
I generally have opera 10 beta 2u off before I do anything. But it probably would not hurt adding it the the script I posted for iGuidance as well.
|
![]() |
|
|
|