It is currently April 27th, 2024, 6:46 am

full screen rss reader

Get help with creating, editing & fixing problems with skins
loverainmeter
Posts: 2
Joined: December 19th, 2011, 11:59 am

full screen rss reader

Post by loverainmeter »

Greetings,
Trying to find a module or modify an existing one that would allow me to see my rss feeds on the whole screen, not just in a small window. Anyone got any ideas on how to accomplish that?
User avatar
Seahorse
Posts: 1175
Joined: June 9th, 2010, 5:56 pm
Location: Locks heath, UK

Re: full screen rss reader

Post by Seahorse »

Find one you like and increase the H & W settings in the skin to suit your requirements... ;-)
"Regrettably your planet is one of those scheduled for demolition"
Mike

My Skins at DeviantArt

loverainmeter
Posts: 2
Joined: December 19th, 2011, 11:59 am

Re: full screen rss reader

Post by loverainmeter »

I dont think its that simple. I went through the code and could not find anything that would help with h and w adjustment. May be you can tell me to what are you referring to and how do I get there?
User avatar
smurfier
Moderator
Posts: 1931
Joined: January 29th, 2010, 1:43 am
Location: Willmar, MN

Re: full screen rss reader

Post by smurfier »

It's not quite as simple as adjusting some arbitrary height and width setting. You need to adjust the height and width of each string meter, change the font size if you wish, then adjust the x and y coordinates accordingly. How easy all of this is depends on which RSS skin you are modding.
GitHub | DeviantArt | Tumblr
This is the song that never ends. It just goes on and on my friends. Some people started singing it not knowing what it was, and they'll continue singing it forever just because . . .
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: full screen rss reader

Post by jsmorley »

Code: Select all

[Rainmeter]
Update=1000
OnRefreshAction=!ClickThrough 1 #CURRENTCONFIG#

[Variables]
URL=http://www.breakingnews.com/feeds/rss/
GET=.*(?(?=.*<div class="item">).*<div class="item">.*<a href="(.*)">(.*)</a>.*<div class="item-info">.* on (.*)</div>)

[DisplayStyle]
W=#SCREENAREAWIDTH#
H=100
Y=10R
FontFace=Tahoma
FontSize=30
FontColor=252,236,225,170
ClipString=1
Antialias=1

[MeasureFeed]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=http://www.google.co.uk/reader/view/feed/#URL#?n=8
RegExp="(?siU)<h1>(.*)</h1>#GET##GET##GET##GET##GET##GET##GET##GET#"

[MeasureLink1]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=2

[MeasureTitle1]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=3

[MeterItem1]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle1

[MeasureLink2]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=5

[MeasureTitle2]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=6

[MeterItem2]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle2

[MeasureLink3]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=8

[MeasureTitle3]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=9

[MeterItem3]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle3

[MeasureLink4]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=11

[MeasureTitle4]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=12

[MeterItem4]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle4

[MeasureLink5]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=14

[MeasureTitle5]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=15

[MeterItem5]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle5

[MeasureLink6]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=17

[MeasureTitle6]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=18

[MeterItem6]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle6

[MeasureLink7]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=20

[MeasureTitle7]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=21

[MeterItem7]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle7

[MeasureLink8]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
StringIndex=23

[MeasureTitle8]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=[MeasureFeed]
DecodeCharacterReference=1
StringIndex=24

[MeterItem8]
Meter=String
MeterStyle=DisplayStyle
MeasureName=MeasureTitle8
12-19-2011 9-19-51 AM.jpg
Now with this you can just mess with W and H and Y and FontFace and FontSize to get different effects. I am setting "ClickThrough" on the skin since if you don't, a full screen skin like this will give you hassles with desktop icons and such.
You do not have the required permissions to view the files attached to this post.