No news is good news.
Quote from: grayme on May 14, 2007, 08:54:09 AM
I was doing something wrong and got it installed.
However it appeared to be clashing with something so I removed it (that and the lack of a viable landscape skin).
Shame really
# TPWeatherRefreshUpdater.mscr:
# Update the weather after a TP refresh
# Loop indefinitely
While ( 1 )
# Check if we can access the tpfans site and have a useful network connection for updating
isConnected = InternetConnected( "http://72.9.224.178/~tpfansc/" )
If ( isConnected )
# if the city1.txt exists and is empty then TP has refreshed
If ( FileExists( "\SD Card\TodayPlus\buffer\City1.txt" ) && \
FileSize( "\SD Card\TodayPlus\buffer\City1.txt") < 100 )
# Short pause of 3 seconds to try and detect a manual refresh
Sleep( 3000 )
# Make sure Radar.exe isn't already running
If ( NOT ProcExists ( "Radar.exe" ) )
RunWait( "\SD Card\TodayPlus\Radar.exe" )
# Force update of today screen to cause the new data to be read
RedrawToday
EndIf
EndIf
EndIf
# wait 60 seconds
Sleep( 60000 )
EndWhile# StopTPWeatherRefreshUpdater.mscr:
# Stop the refresh updater script if its running
refreshUpdater = "\Program Files\TodayPlus\TPWeatherRefreshUpdater.mscr"
If ( ScriptProcExists( refreshUpdater ) )
If ( Question( "Stop TodayPlus Weather Refresh Updater process?" ) = YES )
KillScript( "TPWeatherRefreshUpdater.mscr" )
EndIf
Else
Run( refreshUpdater )
EndIf
Quote from: Broesel on February 23, 2007, 09:34:07 AM
Will let you know, if there are problems ....

Page created in 0.102 seconds with 15 queries.