Samurize Scripts

Soldato
Joined
18 Oct 2002
Posts
21,067
Thanks to all the people that have helped me today.
My desktop so far - just got to sort out the weather thing then it's complete :)

desktop_enhanced.jpg
 
Associate
Joined
18 Oct 2002
Posts
564
Location
London
doesn't have an installer :)

just extract the files into a folder called samurize and then put a shortcut to the exe in startup, tis what I do anyway...
 
Soldato
Joined
18 Oct 2002
Posts
3,267
Location
The Castle
mine thus far

sam_desk.jpg


for some reason the cpu % aint working and i cant display the string of the chip, what you see is what ive copied from device manager

im working on a tv guide that will go down the left of the screen them im pretty much sorted

can anyone help with these probs?
 
Soldato
OP
Joined
18 Oct 2002
Posts
18,175
Location
Santa Barbara, Californee
Good work everybody, nice to see some ideas being floated around,

A really useful URL which I gave to Sundance Kid is

'The Samurize Visual Tutorial'

http://homepages.paradise.net.nz/ldw/tutorial.html

This explains how it works fantastically (at least I think so anyway)

BrenOS - Is that your config from scratch or is it someone else's that you have modified. If its the latter then you the PerfMon will be set for the original computer, so it wont show yours correctly. You need to change/replace the counter with one for your machine.

Sundance Kid - Have you got the weather working yet?

You need to open up the RefreshWeatherPlus.vbs file, in there you can change the id (both of them!) to match your city.

Cheers
Rich

*edit*

Nice one Jake, isnt so hard after all is it ;)
 
Associate
Joined
29 Oct 2002
Posts
142
Location
Bristol, UK
i'm gettin trouble with the UKTV script, some of the advertisements override into other channels displays, cos of the listings, but apart from that its lookin sweet
 
Soldato
OP
Joined
18 Oct 2002
Posts
18,175
Location
Santa Barbara, Californee
Have you changed both of them?

Code:
Option Explicit

On Error Resume Next

Dim WEATHER_URL, fso, cacheFile, wasOld

const CITY_ID= "VUtYWDAwMjg%3D="                          'get your city id from [url]http://weather.interceptvector.com/list.php[/url]
const USE_CELSIUS= True                                'make it False if you want Fahrenheit
const SAMURIZE_DIRECTORY= "C:\Program Files\Samurize"  'change if different than yours

' --- DO NOT TOUCH THE CODE AFETR THAT POINT UNLESS YOU KNOW WHAT YOU ARE DOING ---

WEATHER_URL= "http://weather.interceptvector.com/weather.xml?id=VUtYWDAwMjg%3D" & CITY_ID

If (USE_CELSIUS=True) Then
  WEATHER_URL= WEATHER_URL & "&celsius=true"
End If

Change the const CITY_ID= to const CITY_ID="VUtYWDAyMTU%3D"

And also change
WEATHER_URL= "http://weather.interceptvector.com/weather.xml?id=VUtYWDAwMjg=" & CITY_ID

to

WEATHER_URL= "http://weather.interceptvector.com/weather.xml?id=VUtYWDAyMTU=" & CITY_ID


Ahhh

Also, remember to delete the xml file that is generated, then re-run the vbs file to generate a new xml file. You can check the contents of the cml file by loading it up in notepad to see whether the correct one has been generated.
 
Caporegime
Joined
20 Oct 2002
Posts
74,203
Location
Wish i was in a Ramen Shop Counter
'YAWS v 0.53 by cicada ([email protected]) - weather script
'Cache, weather images and client.exe management

'Compatibile with Samurize 0.84 and probably with higher viersions
'Weather information provided by Intercept Vector (http://weather.interceptvector.com)
'For Sofia, Bulgaria, using Celsius it is: http://weather.interceptvector.com/weather.xml?id=QlVYWDAwMDU=&celsius=true

Option Explicit

On Error Resume Next

Dim WEATHER_URL, fso, cacheFile, wasOld

const CITY_ID= "VUtYWDAyMTU%3D" 'get your city id from http://weather.interceptvector.com/list.php
const USE_CELSIUS= True 'make it False if you want Fahrenheit
const SAMURIZE_DIRECTORY= "C:\Program Files\Samurize" 'change if different than yours

' --- DO NOT TOUCH THE CODE AFETR THAT POINT UNLESS YOU KNOW WHAT YOU ARE DOING ---

WEATHER_URL= "http://weather.interceptvector.com/weather.xml?id=VUtYWDAyMTU=" & CITY_ID

Done that, still not working

even changed the path in the Weather Plus.vbs to my C:/programs folder/Samurize

'YAWS v 0.53 by cicada ([email protected]) - weather script for Samurize 0.84 and higher
'Temperature, city and environment management

'Compatibile with Samurize 0.84 and probably with higher viersions
'Weather information provided by Intercept Vector (http://weather.interceptvector.com)
'For Sofia, Bulgaria, using Celsius it is: http://weather.interceptvector.com/weather.xml?id=VUtYWDExMzQ==&celsius=true

Option Explicit
On Error Resume Next

const SAMURIZE_DIRECTORY= "C:\Program Files\Samurize" 'change if different than yours
const USE_CELSIUS= TRUE 'make it False if you want Fahrenheit

' --- DO NOT TOUCH THE CODE AFTER THAT POINT UNLESS YOU KNOW WHAT YOU ARE DOING ---







:mad: :confused:
 
Back
Top Bottom