It is currently April 30th, 2024, 8:56 am

Help needed with iSteve.

Get help with creating, editing & fixing problems with skins
mutton110
Posts: 2
Joined: December 24th, 2012, 6:11 pm

Help needed with iSteve.

Post by mutton110 »

Hi apparently the photos i placed in the pathname are displayed in random orders. How can i make it go accordingly because i named the photos like eg: logo0001.jpg , logo0002.jpg , logo0003.jpg and so on. Thanks in advance.

Here's the code for my calender.ini :

Code: Select all

[Rainmeter]
Update=100

[Variables]

ImagePath=C:\Users\Vincent Loh\Pictures\Test
subF=0
fFilter=*.jpg;*.jpeg;*.png;*.bmp
UpdateDivider=90

[MeasureDate]
Measure=Time
Format="%d"

[MeasureTime]
Measure=Time
Format="%H:%M"

[MeasureAMPM]
Measure=Time
Format=%p
Substitute="PM":"pm","AM":"am"

[MeasureDay]
Measure=Time
Format="%A"
Substitute="Monday":"MON","Tuesday":"TUE","Wednesday":"WED","Thursday":"THU","Friday":"FRI","Saturday":"SAT","Sunday":"SUN"

[MeasureMonth]
Measure=Time
Format="%b"
Substitute="Jan":"JAN","Feb":"FEB","Mar":"MAR","Apr":"APR","May":"MAY","Jun":"JUN","Jul":"JUL","Aug":"AUG","Sep":"SEP","Oct":"OCT","Nov":"NOV","Dec":"DEC"

[MeasureYear]
Measure=Time
Format="%Y"

[O]
Measure=Plugin
Plugin=Plugins\QuotePlugin.dll
PathName=#ImagePath#
FileFilter=#fFilter#
Subfolders=#subF#

[Pic]
MeasureName=O
Meter=IMAGE
X=65
Y=36
W=104
H=172
LeftMouseDownAction=!Execute [explorer.exe "[O]"]
AntiAlias=1

[Date]
Meter=Bitmap
Measurename=MeasureDate
Bitmapimage="nums.png"
Bitmapframes=10
X=74
Y=245
Bitmapextend=2
Bitmapdigits=2

[BG]
Meter=IMAGE
ImageName=BG2.png
X=0
Y=0
AntiAlias=1

[ShadowMonth]
Meter=STRING
MeasureName=MeasureMonth
X=145
Y=236
StringAlign=Center
StringStyle=Bold
FontFace=Calibri
FontSize=11
FontColor=255,255,255,180
AntiAlias=1

[Month]
Meter=STRING
MeasureName=MeasureMonth
X=145
Y=237
StringAlign=Center
StringStyle=Bold
FontFace=Calibri
FontSize=11
FontColor=0,0,0,140
AntiAlias=1

[ShadowDay]
Meter=STRING
MeasureName=MeasureDay
X=145
Y=264
StringAlign=Center
StringStyle=Bold
FontFace=Calibri
FontSize=11
FontColor=255,255,255,180
AntiAlias=1

[Day]
Meter=STRING
MeasureName=MeasureDay
X=145
Y=265
StringAlign=Center
StringStyle=Bold
FontFace=Calibri
FontSize=11
FontColor=0,0,0,140
AntiAlias=1
User avatar
smurfier
Moderator
Posts: 1931
Joined: January 29th, 2010, 1:43 am
Location: Willmar, MN

Re: Help needed with iSteve.

Post by smurfier »

First, please do not post questions in multiple topics on the forum, and do no bump your topics.

You'll need to rename you images without all those extra zeroes (logo1.jpg for example). You will also need to adjust the 20 in the Formula to be the same as the number of images you have.

Code: Select all

[O]
Measure=Calc
Formula=#CURRENTSECTION#%20+1

[Pic]
Meter=IMAGE
Path=#ImagePath#
MeasureName=O
ImageName=logo%1.jpg
X=65
Y=36
W=104
H=172
LeftMouseDownAction=[explorer.exe "#ImagePath#\logo[O].jpg"]
AntiAlias=1
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 . . .
mutton110
Posts: 2
Joined: December 24th, 2012, 6:11 pm

Re: Help needed with iSteve.

Post by mutton110 »

smurfier wrote:First, please do not post questions in multiple topics on the forum, and do no bump your topics.

You'll need to rename you images without all those extra zeroes (logo1.jpg for example). You will also need to adjust the 20 in the Formula to be the same as the number of images you have.

Code: Select all

[O]
Measure=Calc
Formula=#CURRENTSECTION#%20+1

[Pic]
Meter=IMAGE
Path=#ImagePath#
MeasureName=O
ImageName=logo%1.jpg
X=65
Y=36
W=104
H=172
LeftMouseDownAction=[explorer.exe "#ImagePath#\logo[O].jpg"]
AntiAlias=1
Ohh sorry and thanks for the help ! It works perfectly fine now ! ^^