JinRoh3181
Newbie
- Registriert
- 21. August 2010
- Beiträge
- 16
- Reaktionspunkte
- 0
- Punkte
- 1
AW: Startmenü für 3100 mit MN7 & Igo-Primo
Danke für die Info. Ich habe jetzt mal diese Version genommen. Kann man die Pfade irgendwie auf die SD umlenken? Den iGo ist voll auf der SD.
Rot sind die Änderungen von mir.
TMC wird aber nicht recht mit iGo gehen?
Kann den Irgendein anders Navi auf den TMC zugreifen?
Danke für die Hilfe.
Danke für die Info. Ich habe jetzt mal diese Version genommen. Kann man die Pfade irgendwie auf die SD umlenken? Den iGo ist voll auf der SD.
#Registry for Port Splitter
RegWriteString( "HKLM", "SOFTWARE\JAL\Port Splitter", "InstallPath", SystemPath("ScriptPath")\"Storage Card\Primo\Port Splitter.exe" )
RegWriteDWord( "HKLM", "SOFTWARE\JAL\Port Splitter", "MajorVersion", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Split", 2 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Autostart", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Baud", 11 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Port", 7 )
#Run Port Splitter if not exists
If(not ProcExists("Port Splitter.exe"))
Run(SystemPath("ScriptPath")\"Storage Card\Primo\Port Splitter.exe")
Sleep(500)
EndIf
RunWait("\Storage Card\Primo\PRIMO.EXE")
If(ProcExists("PRIMO.exe"))
Kill("PRIMO.exe")
EndIf
#Stop Port Splitter before killing it
#If the port splitting are not stopped before killing the process,
#it will not work again even you run Port Splitter again without soft reset
If(WndExists("Port Splitter V1.31"))
#Stop button
SendCommand("Port Splitter V1.31", 1010)
Sleep(500)
#Exit button
SendCommand("Port Splitter V1.31", 2)
Sleep(500)
EndIf
#Kill Port Splitter process
If(ProcExists("Port Splitter.exe"))
Kill("Port Splitter.exe")
EndIf
#Clean all registry for Port Splitter
RegDeleteKey( "HKLM", "SOFTWARE\JAL", TRUE, TRUE )
RegDeleteKey( "HKCU", "Software\JAL", TRUE, TRUE )
KillScript( script.mscr )
RegWriteString( "HKLM", "SOFTWARE\JAL\Port Splitter", "InstallPath", SystemPath("ScriptPath")\"Storage Card\Primo\Port Splitter.exe" )
RegWriteDWord( "HKLM", "SOFTWARE\JAL\Port Splitter", "MajorVersion", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Split", 2 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Autostart", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Baud", 11 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Port", 7 )
#Run Port Splitter if not exists
If(not ProcExists("Port Splitter.exe"))
Run(SystemPath("ScriptPath")\"Storage Card\Primo\Port Splitter.exe")
Sleep(500)
EndIf
RunWait("\Storage Card\Primo\PRIMO.EXE")
If(ProcExists("PRIMO.exe"))
Kill("PRIMO.exe")
EndIf
#Stop Port Splitter before killing it
#If the port splitting are not stopped before killing the process,
#it will not work again even you run Port Splitter again without soft reset
If(WndExists("Port Splitter V1.31"))
#Stop button
SendCommand("Port Splitter V1.31", 1010)
Sleep(500)
#Exit button
SendCommand("Port Splitter V1.31", 2)
Sleep(500)
EndIf
#Kill Port Splitter process
If(ProcExists("Port Splitter.exe"))
Kill("Port Splitter.exe")
EndIf
#Clean all registry for Port Splitter
RegDeleteKey( "HKLM", "SOFTWARE\JAL", TRUE, TRUE )
RegDeleteKey( "HKCU", "Software\JAL", TRUE, TRUE )
KillScript( script.mscr )
TMC wird aber nicht recht mit iGo gehen?
Kann den Irgendein anders Navi auf den TMC zugreifen?
Danke für die Hilfe.