It is currently May 13th, 2024, 2:53 pm

How do I edit this iTunes skin to work for WinAmp?

Get help with creating, editing & fixing problems with skins
Monstar
Posts: 6
Joined: June 16th, 2012, 6:25 pm

How do I edit this iTunes skin to work for WinAmp?

Post by Monstar »

I'm currently using the Arachnid in Black skin by r3ginald (http://r3ginald.deviantart.com/art/Arachnid-in-Black-140216574) and I was wondering how I could change the top bar music player in his picture to work with WinAmp, because it is currently only working with iTunes. Help is appreciated :)
User avatar
Brian
Developer
Posts: 2694
Joined: November 24th, 2011, 1:42 am
Location: Utah

Re: How do I edit this iTunes skin to work for WinAmp?

Post by Brian »

Open up the skin in your favorite text editor (like Notepad, Notepad++, etc.), and look for a PlayerName=iTunes.

Change that to PlayerName=Winamp.

-Brian
Monstar
Posts: 6
Joined: June 16th, 2012, 6:25 pm

Re: How do I edit this iTunes skin to work for WinAmp?

Post by Monstar »

Hmm.. It doesn't have "PlayerName=iTunes." I'll post the entire skin information if that will help.

Code: Select all

[Rainmeter]
Update=1000

;Metadata added by RainBrowser
;http://rainmeter.net/RainWiki/index.php?title=Rainmeter_101#.5BMetadata.5D

[Metadata]
Name=
Config=
Description=
Instructions=
Version=
Tags=
License=
Variant=
Preview=

;End of added Metadata

[Variables]
FontName=Century Gothic
Font=Century Gothic
BlackFont=0,0,0,255
PurpFont=60,50,135,255
WhiteFont=255,255,255
BarColor1=0,0,0,255
BarColor2=255,255,255

;---------------------

[MeasurePositionX]
Measure=Calc
Formula=(#SCREENAREAWIDTH#/2)-50

[MeasureMove]
Measure=Calc
Formula=Counter %#SCREENAREAHEIGHT#-400

[BarBackground]
Meter=IMAGE
SolidColor=0,0,0,0
X=0
Y=0
W=300
H=36


;---------------------

[MeasureCurrentTrackArtist]
Measure=Plugin
Plugin=Plugins\iTunesPlugin.dll
Command=GetCurrentTrackArtist

[MeasureCurrentTrackName]
Measure=Plugin
Plugin=Plugins\iTunesPlugin.dll
Command=GetCurrentTrackName


[MeasureToggleiTunes]
Measure=Plugin
Plugin=Plugins\iTunesPlugin.dll
Command=ToggleiTunes
;-----------------



[MeterCurrentTrackArtist]
Meter=STRING
MeasureName=MeasureCurrentTrackArtist
X=200
Y=12
W=140
H=15
Clipstring=1
StringStyle=NORMAL
StringAlign=CENTER
FontColor=255,255,255
FontSize=8
FontFace=#FontName#
AntiAlias=1
Prefix="|    "
Text="%1"


[MeterCurrentTrackName]
Meter=STRING
MeasureName=MeasureCurrentTrackName
X=140
Y=12
W=140
H=15
Clipstring=1
StringStyle=BOLD
StringAlign=RIGHT
FontColor=255,255,255
FontSize=8
FontFace=#FontName#
AntiAlias=1
Text="%1"

[ToggleiTunes]
Meter=IMAGE
ImageName=musicg.png
X=270
Y=11
W=18
H=18
LeftMouseDownAction=!execute [!RainmeterPluginBang "MeasureToggleiTunes"]
Last edited by Brian on June 16th, 2012, 7:16 pm, edited 2 times in total.
Reason: Use [code] tags.
User avatar
Brian
Developer
Posts: 2694
Joined: November 24th, 2011, 1:42 am
Location: Utah

Re: How do I edit this iTunes skin to work for WinAmp?

Post by Brian »

Sorry, I just assumed that skin was using the NowPlaying plugin.

Something like this should work:

Code: Select all

[Rainmeter]
Update=1000

[Variables]
FontName=Century Gothic
Font=Century Gothic
BlackFont=0,0,0,255
PurpFont=60,50,135,255
WhiteFont=255,255,255
BarColor1=0,0,0,255
BarColor2=255,255,255

;---------------------

[MeasurePositionX]
Measure=Calc
Formula=(#SCREENAREAWIDTH#/2)-50

[MeasureMove]
Measure=Calc
Formula=Counter %#SCREENAREAHEIGHT#-400

[BarBackground]
Meter=IMAGE
SolidColor=0,0,0,0
X=0
Y=0
W=300
H=36

;---------------------

[MeasurePlayer]
Measure=Plugin
Plugin=NowPlaying
PlayerName=Winamp

[MeasureCurrentTrackArtist]
Measure=Plugin
Plugin=NowPlaying
PlayerName=[MeasurePlayer]
PlayerType=Artist

[MeasureCurrentTrackName]
Measure=Plugin
Plugin=NowPlaying
PlayerName=[MeasurePlayer]
PlayerType=Title
;-----------------

[MeterCurrentTrackArtist]
Meter=STRING
MeasureName=MeasureCurrentTrackArtist
Group=Player
X=200
Y=12
W=140
H=15
Clipstring=1
StringStyle=NORMAL
StringAlign=CENTER
FontColor=255,255,255
FontSize=8
FontFace=#FontName#
AntiAlias=1
Prefix="|    "

[MeterCurrentTrackName]
Meter=STRING
MeasureName=MeasureCurrentTrackName
Group=Player
X=140
Y=12
W=140
H=15
Clipstring=1
StringStyle=BOLD
StringAlign=RIGHT
FontColor=255,255,255
FontSize=8
FontFace=#FontName#
AntiAlias=1

[ToggleWinamp]
Meter=IMAGE
ImageName=musicg.png
X=270
Y=11
W=18
H=18
LeftMouseDownAction=[!CommandMeasure "MeasurePlayer" "TogglePlayer"]
I converted the player to use the NowPlaying plugin, however, I did not test this so you might have to mess around with this a little bit.

-Brian
Monstar
Posts: 6
Joined: June 16th, 2012, 6:25 pm

Re: How do I edit this iTunes skin to work for WinAmp?

Post by Monstar »

Hey, it worked great! :D Thank you very much!
User avatar
Brian
Developer
Posts: 2694
Joined: November 24th, 2011, 1:42 am
Location: Utah

Re: How do I edit this iTunes skin to work for WinAmp?

Post by Brian »

No problem!

-Brian