It is currently April 28th, 2024, 5:08 pm

Simple Music Playing Skins

Get help with creating, editing & fixing problems with skins
User avatar
AlC
Posts: 329
Joined: June 9th, 2011, 6:46 pm

Re: Simple Music Playing Skins

Post by AlC »

Here are some links.

MouseAction
NowPlaying
Bangs like !ShowMeter, !HideMeter or PLAY
IfActions
Looks a little complicated but thanks :D
Try it, it sounds harder like it is. ;-)
Rainmeter - You are only limited by your imagination and creativity.
BonBonToro
Posts: 9
Joined: January 8th, 2012, 4:37 pm

Re: Simple Music Playing Skins

Post by BonBonToro »

I tried doing this and that and somehow managed to do it!!!!! >:D

Code: Select all

;Position: 155 273

[Rainmeter]
Update=1000

[Variables]

[meter2]
Meter=Button
ButtonImage=#CURRENTPATH#Stop.png
LeftMouseUpAction=!Execute [PLAYSTOP] [!HideMeterGroup Stop] [!ShowMeterGroup Play]
Group=Stop

[meter1]
Meter=Button
ButtonImage=#CURRENTPATH#Play.png
LeftMouseUpAction=!Execute [PLAYLOOP "Pursuing My True Self.wav"] [!HideMeterGroup Play] [!ShowMeterGroup Stop]
Group=Play
It may not be the same as you said (I think) but it works perfectly now!!!! :D
SUCCESS :great:
User avatar
smurfier
Moderator
Posts: 1931
Joined: January 29th, 2010, 1:43 am
Location: Willmar, MN

Re: Simple Music Playing Skins

Post by smurfier »

Here's you code cleaned up a bit.

Code: Select all

[Rainmeter]
Update=1000

[Play]
Meter=Button
ButtonImage=Play.png
ButtonCommand=!Execute [PLAYLOOP "Pursuing My True Self.wav"][!ToggleMeterGroup Button]
Group=Button

[Stop]
Meter=Button
ButtonImage=Stop.png
ButtonCommand=!Execute [PLAYSTOP][!ToggleMeterGroup Button]
Group=Button
Hidden=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 . . .
BonBonToro
Posts: 9
Joined: January 8th, 2012, 4:37 pm

Re: Simple Music Playing Skins

Post by BonBonToro »

So that's what it'd look like more simplified. Thank you! :D
And also thank you AIC! :D