It is currently May 6th, 2024, 7:06 pm

Refresh problem with my own skin

Get help with creating, editing & fixing problems with skins
suitome
Posts: 41
Joined: February 15th, 2011, 10:54 am

Refresh problem with my own skin

Post by suitome »

I created a note skin with further pages. I used this tutorial http://rainmeter.net/cms/Rainmeter101-Tutorial4 to make the bang. I wrote "Page1" on the Page1.txt, "Page2" on the Page2.txt ... until Page4.txt. The problem is when I refresh the skin, I have the 4 text (Page1, Page2, Page3 and Page4) which are superimposed for 1 s and after it's ok.

Code: Select all

Hide1=[!HideMeter Page1]
Show1=[!ShowMeter Page1]
Hide2=[!HideMeter Page2]
Show2=[!ShowMeter Page2]
Hide3=[!HideMeter Page3]
Show3=[!ShowMeter Page3]
Hide4=[!HideMeter Page4]
Show4=[!ShowMeter Page4]
The bang command

Code: Select all

[MeterShowNotes1]
Meter=String
Text="n"
FontFace=Webdings
FontSize=8
FontColor=#ButtonColor# 
X=220
Y=11 
AntiAlias=1 
LeftMouseDownAction=!Execute #Show1##Hide2##Hide3##Hide4#[!Redraw]
I put this in the .ini file: OnRefreshAction=!Execute #Hide2##Hide3##Hide4# but it doesn't seem to do the thing.

Thank you.
poiru
Developer
Posts: 2872
Joined: April 17th, 2009, 12:18 pm

Re: Refresh problem with my own skin

Post by poiru »

Add Hidden=1 to the ones you want to start hidden :)
suitome
Posts: 41
Joined: February 15th, 2011, 10:54 am

Re: Refresh problem with my own skin

Post by suitome »

:bow: Thank you poiru!! I didn't see that: now it works!!