It is currently April 27th, 2024, 4:55 pm

Need some help with setting up weather on my weather widget. please!

Get help with creating, editing & fixing problems with skins
toxicskunky
Posts: 3
Joined: January 21st, 2024, 3:42 am

Need some help with setting up weather on my weather widget. please!

Post by toxicskunky »

I been trying to figure out how to set it up on this widget for the weather. Its alice reworked skin. https://visualskins.com/skin/alice-reworked

I seen how to do it with yahoo weather but this one seems to use the weather channel. https://weather.com/weather/today/l/8822a124f3e4c016c884e257451cf8b2af25c25962d7f36d022eb81cfb25b407 and well I'm not sure how to get it to work. the variables in this code is worded differently than the yahoo ones i have seen. please help? Full code of Alice reworked skin in the spoiler. Original code i haven't attempted to touch it xp. :confused:

Code: Select all

[Rainmeter]
MiddleMouseUPAction=!Refresh
AccurateText=1

[Metadata]
Author=Mordasius
Name=Weather
Version= 220217
License=Creative Commons Attribution-Non-commercial-Share Alike 3.0

[Variables]
@Include=#@#Configs\DefaultVariables.inc
@Include2=#@#Configs\CommonStyles.inc
@Include3=#@#Configs\UserVariables.inc
@Include4=#@#WeatherRegExp.inc
WeatherIcons=#@#images\weather\wIcons\
5dayForecast=http://www.weather.com/weather/5-day/#WeatherCode#
WindDirections="VAR":"S","N/A":"","CALM":"Calm","S":"South","N":"North","E":"East","W":"West","NorthNorthWest":"NNW","WestNorthWest":"WNW","WestSouthWest":"WSW","SouthSouthWest":"SSW","SouthSouthEast":"SSE","EastSouthEast":"ESE","EastNorthEast":"ENE","NorthNorthEast":"NNE","SouthEast":"SE","SouthWest":"SW","NorthEast":"NE","NorthWest":"NW"
UpdateWeather=3600
PanelWidth=304
RPX=178
RPY=15
FIconX=65
FX1=146
F1Y=16
F2Y=115
F3Y=218
IconSize=60
Yspace=16
TxtColor=a3a193
TxtColor2=cecbbb

[sText]
FontFace=Puritan
FontSize=9
FontColor=#TxtColor#
AntiAlias=1

;;===  [  measures  ]  
[MeasureAll]
Measure=Plugin
Plugin=WebParser
; URL=http://xml.weather.com/weather/local/#WeatherCode#?cc=*&unit=#Units#&dayf=3
URL=http://wxdata.weather.com/wxdata/weather/local/#WeatherCode#?cc=*&unit=#Units#&dayf=3
RegExp=(?siU)^(.*)$

FinishAction=[!EnableMeasureGroup Weather] [!ShowMeterGroup Now] [!EnableMeasure mLuaScript] 
UpdateRate=#UpdateWeather#

[mLuaScript]
Measure=Script
ScriptFile=Weather.lua
Disabled=1

;===  [  current measures  ] 
[Location]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#Location#
Group=Weather
Disabled=1

[mCityName]
Measure=Plugin
Plugin=WebParser
URL=[Location]
StringIndex=2
Group=Weather
Disabled=1
;---
[UnitsOfMeasure]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#UnitsOfMeasure#
Group=Weather
Disabled=1

[mTempUnits]
Measure=Plugin
Plugin=WebParser
URL=[UnitsOfMeasure]
StringIndex=3
Substitute="C":"°C","F":"°F"
Group=Weather
Disabled=1

[mWindSpeedUnits]
Measure=Plugin
Plugin=WebParser
URL=[UnitsOfMeasure]
StringIndex=5
Group=Weather
Disabled=1

;===  [  current measures  ]  

[CurrentConditions]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#CurrentConditions#
Group=Weather
Disabled=1

[mTempNow]
Measure=Plugin
Plugin=WebParser
URL=[CurrentConditions]
StringIndex=3
Group=Weather
Disabled=1

[mFeelsLike]
Measure=Plugin
Plugin=WebParser
URL=[CurrentConditions]
StringIndex=4
Group=Weather
Disabled=1

[mDescriptionNow]
Measure=Plugin
Plugin=WebParser
URL=[CurrentConditions]
StringIndex=5
Group=Weather
Disabled=1

[mIconCurrent]
Measure=Plugin
Plugin=WebParser
URL=[CurrentConditions]
StringIndex=6
Group=Weather
Disabled=1

;---
[CurrentBarometric]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#CurrentBarometric#
Group=Weather
Disabled=1

[mPressureNow]
Measure=Plugin
Plugin=WebParser
URL=[CurrentBarometric]
StringIndex=1
Group=Weather
Disabled=1

[mPressureChange]
Measure=Plugin
Plugin=WebParser
URL=[CurrentBarometric]
StringIndex=2
Group=Weather
Disabled=1

;------

[CurrentWind]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#CurrentWind#
Group=Weather
Disabled=1

[mWindSpeed]
Measure=Plugin
Plugin=WebParser
URL=[CurrentWind]
StringIndex=1
Substitute="N/A":"0","calm":"0"
Group=Weather
Disabled=1

[mWindAngleNow] 
Measure=Plugin
Plugin=WebParser
URL=[CurrentWind]
StringIndex=3
Group=Weather
Disabled=1

[mWindDirection]
Measure=Plugin
Plugin=WebParser
URL=[CurrentWind]
StringIndex=4
Group=Weather
Disabled=1

;-----

[CurrentElements]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#CurrentElements#
Group=Weather
Disabled=1

[mHumidityNow]
Measure=Plugin
Plugin=WebParser
URL=[CurrentElements]
StringIndex=1
Group=Weather
Disabled=1

[mCurrentUV]
Measure=Plugin
Plugin=WebParser
URL=[CurrentElements]
StringIndex=3
Group=Weather
Disabled=1

[mUVlevel]
Measure=Plugin
Plugin=WebParser
URL=[CurrentElements]
StringIndex=4
Group=Weather
Disabled=1

[DayNightSwitch]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#DayNightSwitch#
Group=Weather
Disabled=1

[mDayNightSwitcher]
Measure=Plugin
Plugin=WebParser
URL=[DayNightSwitch]
Substitute="":"N"
StringIndex=2
Group=Weather
Disabled=1

;===  [ Today Forecast ]  

[TodayGeneral]
Measure=Plugin
Plugin=WebParser
URL=[MeasureAll]
RegExp=#TodayGeneral#
DynamicVariables=1
Group=Weather
Disabled=1

[mHighToday]
Measure=Plugin
Plugin=WebParser
URL=[TodayGeneral]
StringIndex=4
Group=Weather
Disabled=1

[mLowToday]
Measure=Plugin
Plugin=WebParser
URL=[TodayGeneral]
StringIndex=5
Group=Weather
Disabled=1

[TodayConditions]
Measure=Plugin
Group=Weather
Plugin=WebParser
URL=[MeasureAll]
RegExp=#TodayConditions#
Disabled=1

[mTodayIcon]
Measure=Plugin
Plugin=WebParser
URL=[TodayConditions]
StringIndex=1
Group=Weather
Disabled=1

[mTodayDescription]
Measure=Plugin
Plugin=WebParser
URL=[TodayConditions]
StringIndex=2
Group=Weather
Disabled=1

[TodayWindRain]
Measure=Plugin
Group=Weather
Plugin=WebParser
URL=[MeasureAll]
RegExp=#TodayWindRain#
Disabled=1

[mTodayWindSpeed]
Measure=Plugin
Plugin=WebParser
URL=[TodayWindRain]
StringIndex=1
Substitute="N/A":"0","calm":"0"
Group=Weather
Disabled=1

[mDayWindDirection]
Measure=Plugin
Plugin=WebParser
URL=[TodayWindRain]
StringIndex=4
Substitute=#WindDirections#
Group=Weather
Disabled=1

[mTodayRain]
Measure=Plugin
Plugin=WebParser
URL=[TodayWindRain]
StringIndex=5
Group=Weather
Disabled=1

;===  [ Tonight Forecast ]  
[TonightForecast]
Measure=Plugin
Group=Weather
Plugin=WebParser
URL=[MeasureAll]
RegExp=#TonightForecast#
Disabled=1

[mLowTonight]
Measure=Plugin
Plugin=WebParser
URL=[TodayGeneral]
StringIndex=5
Group=Weather
Disabled=1

[mTonightIcon]
Measure=Plugin
Plugin=WebParser
URL=[TonightForecast]
StringIndex=1
Group=Weather
Disabled=1

[mTonightDescription]
Measure=Plugin
Plugin=WebParser
URL=[TonightForecast]
StringIndex=2
Group=Weather
Disabled=1

[mTonightWindSpeed]
Measure=Plugin
Plugin=WebParser
URL=[TonightForecast]
StringIndex=3
Group=Weather
Disabled=1
Substitute="N/A":"0","calm":"0"

[mTonightWindDirection]
Measure=Plugin
Plugin=WebParser
URL=[TonightForecast]
StringIndex=5
Group=Weather
Disabled=1
Substitute=#WindDirections#

[mTonightRain]
Measure=Plugin
Plugin=WebParser
URL=[TonightForecast]
StringIndex=6
Group=Weather
Disabled=1

;===  [ Tomorrow ]  

[TomorrowForecast]
Measure=Plugin
Group=Weather
Plugin=WebParser
URL=[MeasureAll]
RegExp=#TomorrowForecast#
Disabled=1

[mDayTomorrow]
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=1
Group=Weather
Disabled=1

[mHighTomorrow]
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=2
Group=Weather
Disabled=1

[mLowTomorrow]
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=3
Group=Weather
Disabled=1

[mTomorrowIcon]
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=4
Group=Weather
Disabled=1

[mDescriptionTomorrow]
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=5
Group=Weather
Disabled=1

[mWindSpeedTomorrow]
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=6
Group=Weather
Disabled=1

[mWindDirectionTomorrow] 
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=7
Group=Weather
Disabled=1

[mRainTomorrow]
Measure=Plugin
Plugin=WebParser
URL=[TomorrowForecast]
StringIndex=8
Group=Weather
Disabled=1

;=== [ Day After Tomorrow ]

[DayAfterForecast]
Measure=Plugin
Group=Weather
Plugin=WebParser
URL=[MeasureAll]
RegExp=#DayAfterForecast#
Disabled=1

[mDayAfterTomorrow]
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=1
Group=Weather
Disabled=1

[mHighAfter]
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=2
Group=Weather
Disabled=1

[mLowAfter]
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=3
Group=Weather
Disabled=1

[mIconAfter]
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=4
Group=Weather
Disabled=1

[mDescriptionAfter]
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=5
Group=Weather
Disabled=1

[mWindSpeedAfter]
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=6
Group=Weather
Disabled=1

[mWindDirectionAfter] 
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=7
Group=Weather
Disabled=1

[mRainAfter]
Measure=Plugin
Plugin=WebParser
URL=[DayAfterForecast]
StringIndex=8
Group=Weather
Disabled=1

;=== [ meters ]	===
[MtBackground1]
Meter=IMAGE
ImageName=#@#images\weather\wb10.png
X=(#RPX#-10)
Y=(#RPY#-10)
UpdateDivider=-1

;=== [ Current Weather ]
[MtCurrentIcon]
Meter=IMAGE
Path=#WeatherIcons#
MeasureName=mIconCurrent
X=(#RPX#+66)
Y=(#RPY#+72)
H=(#IconSize#+4)
W=(#IconSize#+4)
ToolTipIcon=#@#Images\Weather\Wicons\TWC-L.ico
ToolTipType=1
ToolTipTitle=[mCityName]
ToolTipText="[mDescriptionNow]#CRLF#Temperature:  [mTempNow][mTempUnits] (feels like [mFeelsLike][mTempUnits])#CRLF#Humidity:   [mHumidityNow]%#CRLF#Wind: [mWindDirection] at [mWindSpeed] [mWindSpeedUnits]#CRLF#UV level: [mCurrentUV] [mUVlevel]"
LeftMouseUpAction=http://www.weather.com/weather/right-now/#WeatherCode#
AntiAlias=1
DynamicVariables=1
Group=Now

[MtForecastIcon]
Meter=IMAGE
Path=#WeatherIcons#
MeasureName=mIconCurrent
ImageTint=ffffffaa
MouseOverAction=[!SetOption "#CURRENTSECTION#" ImageTint ffffff] [!UpdateMeter #CURRENTSECTION#] [!Redraw]
MouseLeaveAction=[!SetOption "#CURRENTSECTION#" ImageTint ffffffaa] [!UpdateMeter #CURRENTSECTION#] [!Redraw]
LeftMouseUpAction=[!ToggleMeterGroup #GroupToShow# ] [!ToggleMeterGroup Forecast] 
ToolTipType=1
ToolTipTitle="Forecast [mTodayDescription]"
ToolTipText = "Click for details..."
X=(#RPX#+251)
Y=(#RPY#+115)
H=44
W=44
DynamicVariables=1
Group=Now
Hidden=1

[cSetPressureNow]
Measure=CALC
Formula=mPressureNow
MinValue=942
MaxValue=1056

[MtBarometer]
Meter=ROTATOR
MeasureName=cSetPressureNow
ImageName=#@#images\weather\ptb.png
ToolTipIcon=#@#Icons\Barometer.ico
ToolTipType=1
ToolTipTitle=Barometer
ToolTipText="Pressure in mb"
X=(#RPX#+163)
Y=(#RPY#+172)
W=80
H=80
OffsetX=40
OffsetY=40
StartAngle=2.0943951
RotationAngle=5.23598776
Antialias=1
DynamicVariables=1
Group=Now
Hidden=1

[cSetDirectionNow]
Measure=CALC
Formula=mWindAngleNow
MinValue=0
MaxValue=360

[MtWindIndicator]
Meter=ROTATOR
MeasureName=cSetDirectionNow
ImageName=#@#images\weather\ptw.png
ToolTipIcon=#@#icons\wind.ico
ToolTipType=1
ToolTipTitle=Wind
ToolTipText="Huffing and puffing"
X=(#RPX#+163)
Y=(#RPY#+46)
W=80
H=80
OffsetX=40
OffsetY=40
DynamicVariables=1
Group=Now
Hidden=1

[MtTempNow]
Meter=STRING
MeasureName=mTempNow
MeasureName2=mTempUnits
StringAlign=CENTER
StringStyle=BOLD
FontFace=Calibri
FontSize=8
StringEffect=SHADOW
FontEffectColor=95939388
FontColor=2f1e0a
AntiAlias=1
W=30
H=18
X=(#RPX#+82)
Y=(#RPY#+228)
Text=%1%2
DynamicVariables=1
Group=Now
Hidden=1

[cDummy1]
Measure=CALC
Formula=0
UpdateDivider=-1

[MtFeelsPointer]
Meter=Rotator
MeasureName=cDummy1
X=(#RPX#+46)
Y=(#RPY#+177)
W=70
H=70
ImageName=#@#images\weather\ptf.png
OffsetX=35
OffsetY=35
StartAngle=4.08
RotationAngle=4.437
Antialias=1
DynamicVariables=1

[cDummy2]
Measure=CALC
Formula=1
UpdateDivider=-1

[MtTempPointer]
Meter=Rotator
MeasureName=cDummy2
X=(#RPX#+46)
Y=(#RPY#+177)
W=70
H=70
ImageName=#@#images\weather\ptt.png
OffsetX=35
OffsetY=35
StartAngle=4.08
RotationAngle=4.437
Antialias=1
DynamicVariables=1

[MtTempToolTip]
Meter=IMAGE
X=(#RPX#+58 )
Y=(#RPY#+188)
W=60
H=70
ToolTipIcon=#@#Icons\Thermometer.ico
ToolTipType=1
ToolTipTitle=Temperature
ToolTipText = "[mTempNow][mTempUnits] that feels like [mFeelsLike][mTempUnits]"
DynamicVariables=1
Group=Now
Hidden=1

;===  [ Forecasts ]  ====
[MtBackground2]
Meter=IMAGE
ImageName=#@#images\weather\wbf.png
UpdateDivider=-1
Group=Forecast
Hidden=1

[MtClick4Forecast]
Meter=IMAGE
X=10
Y=50
W=260
H=300
LeftMouseUpAction=#5dayForecast#
ToolTipText="Click for a five-day Forecast#CRLF#from the Weather Channel"
UpdateDivider=-1
Group=Forecast
Hidden=1

[MtTitle]
Meter=STRING
MeterStyle= sText
FontSize=10
FontColor=#TxtColor#
X=(#FIconX#+6)
Y=18
Text=3-Day Forecast
UpdateDivider=-1
Group=Forecast
Hidden=1

;===  [ Today / Tonight Forecasts ]  ====
[DayIcon]
Meter=IMAGE
Path=#WeatherIcons#
MeasureName=mTodayIcon
X=(#FIconX#+9)
Y=(#F1Y#+47)
H=#IconSize#
W=#IconSize#
AntiAlias=1
Group=Today
Hidden=1

[DayDescription]
Meter=STRING
MeasureName=mTodayDescription
MeterStyle= sText
FontSize=10
FontColor=#TxtColor2#
X=(#FIconX#-10)
Y=(#F1Y#+22)
W=192
H=18
ClipString=1
Text="Today - %1"
Group=Today
Hidden=1

[DayTempText]
Meter=STRING
MeasureName=mHighToday
MeasureName2=mTempUnits
MeterStyle= sText
X=#FX1#
Y=(#F1Y#+45)
Text="High: %1%2"
Group=Today
Hidden=1

[DayRain]
MeasureName=mTodayRain
Meter=STRING
MeterStyle= sText
X=(#FX1#+2)
Y=#Yspace#r
Text="Rain:  %1%"
Group=Today
Hidden=1

[DayWindDirection]
Meter=STRING
MeasureName=mDayWindDirection
MeterStyle= sText
X=(#FX1#+4)
Y=#Yspace#r
Text="Wind:  %1"
Group=Today
Hidden=1

[DayWindSpeed]
Meter=STRING
MeterStyle= sText
X=(#FX1#+6)
Y=#Yspace#r
Text="......."
Group=Today
Hidden=1

;=== [ Forecast Tonight ]  ===
[NightIcon]
Path=#WeatherIcons#
MeasureName=mTonightIcon
Meter=IMAGE
X=(#FIconX#+9)
Y=(#F1Y#+47)
H=#IconSize#
W=#IconSize#
AntiAlias=1
Group=Tonight
Hidden=1

[TonightDescription]
Meter=STRING
MeasureName=mTonightDescription
MeterStyle= sText
FontSize=10
FontColor=#TxtColor2#
X=(#FIconX#-10)
Y=(#F1Y#+22)
W=192
H=18
ClipString=1
Text="Tonight - %1"
Group=Tonight
Hidden=1

[NightTempText]
Meter=STRING
MeasureName=mLowTonight
MeasureName2=mTempUnits
MeterStyle= sText
X=#FX1#
Y=(#F1Y#+45)
Text="Low: %1%2"
Group=Tonight
Hidden=1

[NightRain]
MeasureName=mTonightRain
Meter=STRING
MeterStyle= sText
X=(#FX1#+2)
Y=#Yspace#r
Text="Rain:  %1%"
Group=Tonight
Hidden=1

[NightWindDirection]
Meter=STRING
MeasureName = mTonightWindDirection
MeterStyle= sText
X=(#FX1#+4)
Y=#Yspace#r
Text="Wind:  %1"
Group=Tonight
Hidden=1

[NightWindSpeed]
Meter=STRING
MeterStyle= sText
X=(#FX1#+6)
Y=#Yspace#r
Text="Puffle Puff"
Group=Tonight
Hidden=1

;=== [ Tomorrow ] ===========
[TomorrowIcon]
Path=#WeatherIcons#
MeasureName=mTomorrowIcon
Meter=IMAGE
X=(#FIconX#+7)
Y=(#F2Y#+49)
H=#IconSize#
W=#IconSize#
AntiAlias=1
Group=Forecast
Hidden=1

[TomorrowDescription]
Meter=STRING
MeasureName=mDayTomorrow
MeasureName2=mDescriptionTomorrow
MeterStyle= sText
FontSize=10
FontColor=#TxtColor2#
X=(#FIconX#-18)
Y=(#F2Y#+22)
W=209
H=18
ClipString=1
Text="%1 - %2"
Group=Forecast
Hidden=1

[TomorrowTemp]
Meter=STRING
MeasureName=mHighTomorrow
MeasureName2=mLowTomorrow
MeasureName3=mTempUnits
MeterStyle= sText
X=(#FX1#+8)
Y=(#F2Y#+45)
Text="Temp: %2-%1%3"
Group=Forecast
Hidden=1

[TomorrowRain]
MeasureName=mRainTomorrow
Meter=STRING
MeterStyle= sText
X=(#FX1#+10)
Y=#Yspace#r
Text="Rain:  %1%"
Group=Forecast
Hidden=1

[TomorrowWindDirection]
Meter=STRING
MeasureName=mWindDirectionTomorrow
MeterStyle= sText
X=(#FX1#+12)
Y=#Yspace#r
Text="Wind:  %1"
Group=Forecast
Hidden=1

[TomorrowWindSpeed]
Meter=STRING
MeterStyle= sText
X=(#FX1#+14)
Y=#Yspace#r
Text="I'll huff and I'll puff"
Group=Forecast
Hidden=1

;=== [ Day After Tomorrow ]
[AfterIcon]
Meter=IMAGE
Path=#WeatherIcons#
MeasureName=mIconAfter
X=(#FIconX#+5)
Y=(#F3Y#+47)
H=#IconSize#
W=#IconSize#
AntiAlias=1
Group=Forecast
Hidden=1

[AfterDescription]
Meter=STRING
MeasureName=mDayAfterTomorrow
MeasureName2=mDescriptionAfter
MeterStyle= sText
FontSize=10
FontColor=#TxtColor2#
W=221
H=18
ClipString=1
X=(#FIconX#-27)
Y=(#F3Y#+22)
Text="%1 - %2"
Group=Forecast
Hidden=1

[AfterTempText]
Meter=STRING
MeterStyle= sText
MeasureName=mHighAfter
MeasureName2=mLowAfter
MeasureName3=mTempUnits
X=(#FX1#+14)
Y=(#F3Y#+45)
Text="Temp: %2-%1%3"
Group=Forecast
Hidden=1

[AfterRain]
MeasureName=mRainAfter
Meter=STRING
MeterStyle= sText
X=(#FX1#+16)
Y=#Yspace#r
Text="Rain:  %1%"
Group=Forecast
Hidden=1

[AfterWindDirection]
Meter=STRING
MeasureName=mWindDirectionAfter
MeterStyle= sText
X=(#FX1#+18)
Y=#Yspace#r
Text="Wind:  %1"
Group=Forecast
Hidden=1

[AfterWindSpeed]
Meter=STRING
MeterStyle= sText
X=(#FX1#+20)
Y=#Yspace#r
Text="Unknown speed"
Group=Forecast
Hidden=1
;------------
[MtCloseForecast]
Meter=IMAGE
X=(#PanelWidth#-70)
Y=(#F1Y#)
W=18
H=18
AntiAlias=1
LeftMouseUpAction=[!HideMeterGroup Today ] [!HideMeterGroup Tonight ] [!HideMeterGroup Forecast][!Redraw]
ToolTipText="Close  Forecast"
Group=Forecast
Hidden=1
UpdateDivider=-1

Last edited by eclectic-tech on January 21st, 2024, 4:55 am, edited 1 time in total.
Reason: Please use the code tag </> when posting codes.
User avatar
Yincognito
Rainmeter Sage
Posts: 7177
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: Need some help with setting up weather on my weather widget. please!

Post by Yincognito »

toxicskunky wrote: January 21st, 2024, 3:53 amI seen how to do it with yahoo weather but this one seems to use the weather channel.
The below is about creating a new skin using weather.com as a source, but it shouldn't be difficult to pick up only the steps required to change an existing one (credit to eclectic-tech):
https://forum.rainmeter.net/viewtopic.php?t=36016

Or, you can wait for Mordasius, the author of the skin, to react to this if he sees it. Or, maybe someone else will offer more details on how to approach this. If you do it yourself using the above tutorial, just take it easy, one step at a time, and verify that what you did until then works.
Profiles: Rainmeter ProfileDeviantArt ProfileSuites: MYiniMeterSkins: Earth
User avatar
xenium
Posts: 868
Joined: January 4th, 2018, 9:52 pm

Re: Need some help with setting up weather on my weather widget. please!

Post by xenium »

toxicskunky wrote: January 21st, 2024, 3:53 am I been trying to figure out how to set it up on this widget for the weather. Its alice reworked skin. https://visualskins.com/skin/alice-reworked

I seen how to do it with yahoo weather but this one seems to use the weather channel. https://weather.com/weather/today/l/8822a124f3e4c016c884e257451cf8b2af25c25962d7f36d022eb81cfb25b407 and well I'm not sure how to get it to work. the variables in this code is worded differently than the yahoo ones i have seen. please help?
Many skins on visualskins.com are not updated.
On Deviantart the skin is updated and the weather works:
https://www.deviantart.com/mordasius/art/Alice-Reworked-for-Rainmeter-351421592
toxicskunky
Posts: 3
Joined: January 21st, 2024, 3:42 am

Re: Need some help with setting up weather on my weather widget. please!

Post by toxicskunky »

Yincognito wrote: January 21st, 2024, 5:24 am The below is about creating a new skin using weather.com as a source, but it shouldn't be difficult to pick up only the steps required to change an existing one (credit to eclectic-tech):
https://forum.rainmeter.net/viewtopic.php?t=36016

Or, you can wait for Mordasius, the author of the skin, to react to this if he sees it. Or, maybe someone else will offer more details on how to approach this. If you do it yourself using the above tutorial, just take it easy, one step at a time, and verify that what you did until then works.
Sweet. this will be good to know if i wanted to do my own. lol. I'll give it a look thanks :)
toxicskunky
Posts: 3
Joined: January 21st, 2024, 3:42 am

Re: Need some help with setting up weather on my weather widget. please!

Post by toxicskunky »

xenium wrote: January 21st, 2024, 8:39 am Many skins on visualskins.com are not updated.
On Deviantart the skin is updated and the weather works:
https://www.deviantart.com/mordasius/art/Alice-Reworked-for-Rainmeter-351421592
Thank you! I'll give this a try. :) if it dont work then i'll give mordasius a shout on DA!
User avatar
Yincognito
Rainmeter Sage
Posts: 7177
Joined: February 27th, 2015, 2:38 pm
Location: Terra Yincognita

Re: Need some help with setting up weather on my weather widget. please!

Post by Yincognito »

toxicskunky wrote: January 21st, 2024, 2:05 pm Sweet. this will be good to know if i wanted to do my own. lol. I'll give it a look thanks :)
Well, obviously Xenium's suggestion is much better in this case, lol - but you're welcome anyway. Enjoy! ;-)
Profiles: Rainmeter ProfileDeviantArt ProfileSuites: MYiniMeterSkins: Earth