It is currently April 19th, 2024, 3:10 pm

Make an icon on the desktop show and hide ano

Get help with creating, editing & fixing problems with skins
Jayes
Posts: 5
Joined: January 10th, 2016, 1:19 pm

Make an icon on the desktop show and hide ano

Post by Jayes »

I want to make a basic honeycomb icon show and hide my game launcher (lauhdutin)

The same as in this gfy http://gfycat.com/ImpressiveAstonishingAfricanhornbill

thanks
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Make an icon on the desktop show and hide ano

Post by jsmorley »

I don't know or care about Honeycomb, but here is an approach for toggling a group of meters with a button:

Code: Select all

[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1

[Variables]

[MeterToggle]
Meter=String
X=0
Y=0
FontSize=12
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=Toggle Button
LeftMouseUpAction=[!ToggleMeterGroup "Buttons"][!UpdateMeterGroup "Buttons"][!Redraw]

[MeterGame1]
Meter=String
Group=Buttons
X=0
Y=10R
FontSize=12
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=Game 1
LeftMouseUpAction=[!Log "Clicked Button 1"]
Hidden=1

[MeterGame2]
Meter=String
Group=Buttons
X=10R
Y=0r
FontSize=12
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=Game 2
LeftMouseUpAction=[!Log "Clicked Button 2"]
Hidden=1

[MeterGame3]
Meter=String
Group=Buttons
X=0
Y=10R
FontSize=12
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=Game 3
LeftMouseUpAction=[!Log "Clicked Button 3"]
Hidden=1

[MeterGame4]
Meter=String
Group=Buttons
X=10R
Y=0r
FontSize=12
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=Game 4
LeftMouseUpAction=[!Log "Clicked Button 4"]
Hidden=1
test.gif
You do not have the required permissions to view the files attached to this post.
Jayes
Posts: 5
Joined: January 10th, 2016, 1:19 pm

Re: Make an icon on the desktop show and hide ano

Post by Jayes »

You've sort of got the idea of what I was looking for but I was aiming to show and hide another skin with the button.

I found another post you made that solved my dilemma perfectly, thanks a lot

https://forum.rainmeter.net/viewtopic.php?t=9497
Hari
Posts: 1
Joined: June 11th, 2018, 7:10 am

Re: Make an icon on the desktop show and hide ano

Post by Hari »

@jsmorley
How to achieve this effect when mouse over the icon. if i use mouse over action as soon as i leave that icon all other icons disappear.