A mi tampoco me funciona el script finalmente ha probado alguién a cambiar la F por la p en en el script?? has conseguido que te funcione?
Un saludo a ver si alguén responde
Cita:
Originalmente Escrito por Miguerin
nOSE PERO ME PARECE QUE TIENE EL SCRIPT ALGO MAL PNGO EN ROJO LO QUE CREO QUE ESTA MAL DECIRME ALGO #------------------------------------------
#
# Tomtom & GpsFlex launcher ¿NO SERIA GpsPlex?
#
#------------------------------------------
# run GPSPlex
if (ProcExists("GpsPlex.exe") = 0)
Run("\Archivos de Programa\GpsPlex\GpsPlex.EXE")
endif
# run TomTom
if (ProcExists("TomTom Navigator.exe") = 0)
RunWait("\Archivos de Programa\Navigator\TomTom Navigator.exe")
else
Show("TomTom Navigator")
while (WndExists ("TomTom Navigator"))
sleep(1000)
endwhile
endif
# kill GpsFlex ¿y aqui tambien no seria GpsPlex)
if (ProcExists("GpsPlex.exe") = 1)
kill("GpsPlex.exe")
endif
|