It is currently May 21st, 2024, 11:42 pm

autoShow music cover when music plays and autohide it when..

Get help with creating, editing & fixing problems with skins
User avatar
Kaelri
Developer
Posts: 1721
Joined: July 25th, 2009, 4:47 am

Re: autoShow music cover when music plays and autohide it wh

Post by Kaelri »

It isn't working for [Knob] because ImageAlpha only applies when you have an actual image file to display. It doesn't affect the SolidColor setting. For that, use:

Code: Select all

SolidColor=117,165,52,#CoverTransparency#
apit23
Posts: 43
Joined: August 17th, 2012, 9:06 am

Re: autoShow music cover when music plays and autohide it wh

Post by apit23 »

hey, about the next and prev . Its not fade in when the music is played.

Code: Select all

[Next]
Meter=Image
ImageName=next.png
X=182
Y=78
Group=Control
ToolTipText=Next
MouseOverAction=[!SetOption #CURRENTSECTION# ImageName "next1.png"][!Update]
MouseLeaveAction=[!SetOption #CURRENTSECTION# ImageName "next.png"][!Update]
LeftMouseUpAction=[!CommandMeasure "Player" "Next"][!ShowMeterGroup Control][!Redraw]
ImageAlpha=#CoverTransparency#
UpdateDivider=(1000/#UpdateSpeed#)

[Previous]
Meter=Image
ImageName=prev.png
X=4
Y=r
Group=Control
ToolTipText=Previous
MouseOverAction=[!SetOption #CURRENTSECTION# ImageName "prev1.png"][!Update]
MouseLeaveAction=[!SetOption #CURRENTSECTION# ImageName "prev.png"][!Update]
LeftMouseUpAction=[!CommandMeasure "Player" "Previous"][!ShowMeterGroup Control][!SetOption #CURRENTSECTION# ImageName "prev1.png"][!Update][!Redraw]
ImageAlpha=#CoverTransparency#
UpdateDivider=(1000/#UpdateSpeed#)
Last edited by Kaelri on September 9th, 2012, 3:15 am, edited 1 time in total.
Reason: Added [code] tags.
User avatar
Kaelri
Developer
Posts: 1721
Joined: July 25th, 2009, 4:47 am

Re: autoShow music cover when music plays and autohide it wh

Post by Kaelri »

You're missing DynamicVariables=1 on those meters.
apit23
Posts: 43
Joined: August 17th, 2012, 9:06 am

Re: autoShow music cover when music plays and autohide it wh

Post by apit23 »

thanx. i was so careless.