• Welcome to TodayPlus Boards v2.
 

News:

No news is good news.

Main Menu

Recent posts

#71
SPGM-Vid / Re: Help with spgm-vid... "no ...
Last post by jhollin1138 - July 31, 2007, 08:55:37 AM
Sorry for the late response, did you ever find a solution to this problem?
#72
SPGM-Vid / Re: SPGM-Vid issue incorporati...
Last post by jhollin1138 - July 31, 2007, 08:54:45 AM
I have never integrated SPGM-Vid into a CMS.  I have looked at it a few times, I just haven't been able to find enough time to it.
#73
SPGM-Vid / SPGM-Vid issue incorporating w...
Last post by thecustomshop - July 30, 2007, 03:49:01 PM
I am currently attempting to install SPGM-Vid 1.0.9 with SPGM 1.4.7 on our website at http://www.thecustomshopautomotive.com/ under the Gallery page.  It appears to have installed, but the test video gallery does not appear.  Any thoughts?
#74
SPGM-Vid / Help with spgm-vid... "no supp...
Last post by juni0r - July 08, 2007, 12:06:13 PM
hello there...

When i try to set up spgm-vid, it always shows me this message :



I tried copy the files from SPGM Changed files instead of changing them myself, but it always does the same:(

Could someone help me ?

Thanks in advance
#75
General / Re: weather update
Last post by Papita - June 16, 2007, 12:19:07 PM
If you are using the hammerskin all you have to do is download the TpExeDelay.exe file from http://todayplus.jhollin1138.com/files/uk_skinner/TpExeDelay.zip.
The TpExeDelay:  It is an exe that will launch any exe after the weather information is updated in TP.  List all the exe you wish to run in the TpExeDelay.txt and place this text file in \My Documents\.  The exe file can be anywhere Please note: each line of file pathway needs to be ended by a "return" even for the last one.  For example:

\SD Card\TodayPlus\Radar\Radar.exe<---hit return right after exe
in the TpExeDelay.txt delete

\Tp_Pack\TpRegistryWind.exe
\Tp_Pack\TpSkyTranslate.exe

and insert

\SD Card\TodayPlus\Radar\Radar.exe<---hit return right after exe

or the path where radar.exe is located. Then in the TodayPlus Config in shortcuts substitude the 7th groups,Apps7, the shortcut to Radar.exe with TpExeDelay.exe then go to the General tap and Clear Buffer and Reload Pluggin it should work.
#76
General / Re: WM6 brings the end to T+?
Last post by pgmnv - May 14, 2007, 11:44:14 AM
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

Hello Grayme,

Yes there are some problems but I think it's with Tpdelay and the others .exe!
You are absolutly right this could have been "the" today plugin!!!

Cheers

Pedro Vicente
#77
General / Re: WM6 brings the end to T+?
Last post by grayme - 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
#78
General / Re: WM6 brings the end to T+?
Last post by pgmnv - May 14, 2007, 04:39:54 AM
Hello Grayme,

You must be doing something wrong.... I'am currently using WM6, and T+ is showing normally, and working even faster.

Cheers

Pedro Vicente
#79
General / Re: weather update
Last post by Morpheus - May 03, 2007, 10:41:30 PM
Thanks ZapMe1,

Your mention of MortScript (once i found out what it was) gave me an idea on how to deal with the auto refresh issue by approaching the problem in a similar way to a unix shell script or Perl Script. I have written a MortScript that will check if an internet connection exists and weather the City1.txt file exists and has zero size and if so run Radar.exe . This effectively means that everytime TP splats over the weather info with an auto-refesh the script will detect this and update the data via Radar.exe.

Anyway The script is as follows plus a small script to stop it.

# 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



The script to stop this running:-

# 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


HTH,

Morpheus

P.S.
Obviously MortScript has to be installed for this to work (tested with version 4.0) just in case anyone else wants to try it.
Creating a shortcut to the script in your \Windows\startup folder will start it automatically on a reset. If you want it to check for a refresh more frequently than once a minute lower the value in the Sleep (60000) function call to a suitable number of milliseconds.

*edit* Now redraws the Today screen so that new weather data is displayed
#80
Developer's Corner Discussion / Re: Problems with tpfans.com -...
Last post by Broesel - May 03, 2007, 03:22:19 PM
Quote from: Broesel on February 23, 2007, 09:34:07 AM
Will let you know, if there are problems ....

Well, here I am again  :| as reported in the German forum there is a new problem with the de-weatherscript:

http://www.ppc-welt.info/community/showthread.php?p=876526#post876526

If you read this, could you take a look ?  :bow:

Regards Broesel