It is currently April 19th, 2024, 6:48 am

Editing Butons

Get help with creating, editing & fixing problems with skins
Lynkon
Posts: 9
Joined: April 1st, 2017, 12:29 pm

Editing Butons

Post by Lynkon »

Hey!,

I'm new to rainmeter and have spent the last three hours trying go get my head around editing buttons, creating pathways and all that good stuff. I've used the manual but i am still having trouble. The skin I'm using is Desktop +++ by FiftyNiner. If someone could help me out that would be appreciated.

Cheers, Lynkon
User avatar
eclectic-tech
Rainmeter Sage
Posts: 5391
Joined: April 12th, 2012, 9:40 pm
Location: Cedar Point, Ohio, USA

Re: Editing Butons

Post by eclectic-tech »

It seems the author has moved on...
Fiftyniner wrote:Hey guys, starting with some new projects; Namely indie game development!
I'm not really doing things under Fiftyniner any more; Rather, you can find me now under JTemoshenko!

I'll mostly be keeping up to date here on Twitter:
...
You might want to try to contact the author on Twitter for help: https://twitter.com/JTemoshenko

The link to that skin is: Desktop+++

Perhaps a member who has this skin can help... I do not, and without seeing any code can't do much.
Lynkon
Posts: 9
Joined: April 1st, 2017, 12:29 pm

Re: Editing Butons

Post by Lynkon »

Code: Select all

[Background]
Meter=IMAGE
SolidColor=#Primary2#
W=632
H=84
X=0
Y=0

[Shortcut1]
Meter=BUTTON
ButtonImage=#ls1Icon1#
ImageTint=#Secondary1#
ToolTipText=#ls1Name1#
LeftMouseUpAction=#ls1Shortcut1#
x=35
y=17

[Shortcut2]
Meter=BUTTON
ButtonImage=#ls1Icon2#
ImageTint=#Secondary1#
ToolTipText=#ls1Name2#
LeftMouseUpAction=!Execute [D:/Steam/Steamapps/common/Warframe/Warframe.exe]
x=108
y=17

[Shortcut3]
Meter=BUTTON
ButtonImage=#ls1Icon3#
ImageTint=#Secondary1#
ToolTipText=#ls1Name3#
LeftMouseUpAction=#ls1Shortcut3#
x=181
y=17


[Shortcut4]
Meter=BUTTON
ButtonImage=#ls1Icon4#
ImageTint=#Secondary1#
ToolTipText=#ls1Name4#
LeftMouseUpAction=#ls1Shortcut4#
x=254
y=17

[Shortcut5]
Meter=BUTTON
ButtonImage=#ls1Icon5#
ImageTint=#Secondary1#
ToolTipText=#ls1Name5#
LeftMouseUpAction=#ls1Shortcut5#
x=328
y=17

[Shortcut6]
Meter=BUTTON
ButtonImage=#ls1Icon6#
ImageTint=#Secondary1#
ToolTipText=#ls1Name6#
LeftMouseUpAction=#ls1Shortcut6#
x=401
y=17

[Shortcut7]
Meter=BUTTON
ButtonImage=#ls1Icon7#
ImageTint=#Secondary1#
ToolTipText=#ls1Name7#
LeftMouseUpAction=#ls1Shortcut7#
x=474
y=17

[Shortcut8]
Meter=BUTTON
ButtonImage=#ls1Icon8#
ImageTint=#Secondary1#
ToolTipText=#ls1Name8#
LeftMouseUpAction=#ls1Shortcut8#
x=547
y=17
You can see I,ve tried to get it working on shirtcut 2 but I've had no luck.
Last edited by fonpaolo on April 2nd, 2017, 11:41 am, edited 1 time in total.
Reason: Please use the [code] tags
Bekarfel
Posts: 217
Joined: May 16th, 2012, 5:38 am

Re: Editing Butons

Post by Bekarfel »

Some games require launching via Steam in order to run correctly.
For games like that, use the steam URI steam://run/<ID> where <ID> is the numeric ID of the game you're trying to run (for example Warframe has the ID of 230410 so to launch it you would use steam://run/230410 )
moshi wrote:there are many Rainmeter skins that aren't really useful, so let's add another one.
jsmorley wrote:I have good news and bad news.
First the bad news. [...] We would be happy to have this happen and would love to work with anyone who is feeling ambitious.
Now the good news.
I lied, there isn't any good news...
Lynkon
Posts: 9
Joined: April 1st, 2017, 12:29 pm

Re: Editing Butons

Post by Lynkon »

Would i put that after the leftmosuedown thing?
Lynkon
Posts: 9
Joined: April 1st, 2017, 12:29 pm

Re: Editing Butons

Post by Lynkon »

I have figured out how to launch a program but how do i replace the image? As in what it looks like. So change warframe to the warframe icon.
Lynkon
Posts: 9
Joined: April 1st, 2017, 12:29 pm

Re: Editing Butons

Post by Lynkon »

nevermind i messed it up
Lynkon
Posts: 9
Joined: April 1st, 2017, 12:29 pm

Re: Editing Butons

Post by Lynkon »

My only problem now is changing the icons. Here is the code:
ls1Name1= Warframe
ls1Icon1= #@#\shortcutIcons\temp.png
ls1Shortcut1= ["steam://run/230410"]
if someone could help me that would be great.
User avatar
kyriakos876
Posts: 919
Joined: January 30th, 2017, 2:01 am
Location: Greece

Re: Editing Butons

Post by kyriakos876 »

Lynkon wrote:My only problem now is changing the icons. Here is the code:
ls1Name1= Warframe
ls1Icon1= #@#\shortcutIcons\temp.png
ls1Shortcut1= ["steam://run/230410"]
if someone could help me that would be great.
To change the icon you have yo find a new one. Once you have your icon browse to "Documents/Rainmeter/Skins/Desktop++++/#@#Resources/shortcutIcons" and place the icon in that folder. Now you can either delete the previous one named "temp.png" and rename your new icon to temp.png, or add yours with another name and go to the code and change the name. So if for example you name your icon "something.png " then you will have to change the code to:

Code: Select all

ls1Name1=                          Warframe
ls1Icon1=                          #@#\shortcutIcons\something.png
ls1Shortcut1=                      ["steam://run/230410"]