It is currently April 16th, 2024, 3:02 pm

Skin Meter Button cutoff

Get help with creating, editing & fixing problems with skins
AznDrizzy
Posts: 2
Joined: June 12th, 2019, 8:27 pm

Skin Meter Button cutoff

Post by AznDrizzy »

Well, my problem might look simple to some of you, but i'm really new in the rainmeter skin section, so here's my problem :

http://prntscr.com/o12hbv

And here's the code :

Code: Select all

[Rainmeter]
Author=AznDrizzy
DynamicWindowSize=1

[Metadata]
Name=Small Launchers
Version=1.2.0

[BackgroundImage]
Meter=image
Solidcolor=0,0,0,1
H=600
W=10
 
[MeterLauncher]
Meter=BUTTON
ButtonImage=#@#\Images\Small Launchers\AstroUI-Button.png
ButtonCommand=["#SLP1#"]
Antialias=1

[MeterLauncher1]
Meter=BUTTON
ButtonImage=#@#\Images\Small Launchers\AstroUI-Button.png
x=50r
y=-70r
ButtonCommand=["#SLP2#"]
Antialias=1

[MeterLauncher2]
Meter=BUTTON
ButtonImage=#@#\Images\Small Launchers\AstroUI-Button.png
x=90r
ButtonCommand=["#SLP3#"]
Antialias=1

[MeterLauncher3]
Meter=BUTTON
ButtonImage=#@#\Images\Small Launchers\AstroUI-Button.png
x=90r
ButtonCommand=["#SLP4#"]
Antialias=1

[MeterLauncher4]
Meter=BUTTON
ButtonImage=#@#\Images\Small Launchers\AstroUI-Button.png
x=90r
ButtonCommand=["#SLP5#"]
Antialias=1

[MeterLauncher5]
Meter=BUTTON
ButtonImage=#@#\Images\Small Launchers\AstroUI-Button.png
x=90r
ButtonCommand=["#SLP6#"]
Antialias=1
 
Hope someone can help me on this ...
User avatar
balala
Rainmeter Sage
Posts: 16142
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Skin Meter Button cutoff

Post by balala »

AznDrizzy wrote: June 12th, 2019, 8:32 pm Hope someone can help me on this ...
[MeterLauncher1] is placed relatively to [MeterLauncher], but this one is positioned defaultly to Y=0. According to the Y=-70r option of the [MeterLauncher1], this goes outside of the skin.
The simplest solution is to move the [MeterLauncher] in a way to get [MeterLauncher1] completely inside of the skin. Add a Y=70 option to [MeterLauncher].
AznDrizzy
Posts: 2
Joined: June 12th, 2019, 8:27 pm

Re: Skin Meter Button cutoff

Post by AznDrizzy »

Thanks ! It was helpful !
User avatar
balala
Rainmeter Sage
Posts: 16142
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Skin Meter Button cutoff

Post by balala »

I'm glad. Do you see it now entirely?