I modified some of the blue3wide skin files a while back to create a link back to the "My Lyrics" plugin from MyMusic by replacing the "Now Playing" control. Recently I updated from 1.0.2 to 1.1.0 final, and I'm going through the skin files again and I'm having a problem.
What I used before was 2 controls with the same ID, and set one to visible if "My Lyrics" is installed, and one if its is not, like this:
This code worked fine in 1.0.2, but its not allowing the control to be selected in 1.1.0. Any ideas how I can get this effect in 1.1.0?
What I used before was 2 controls with the same ID, and set one to visible if "My Lyrics" is installed, and one if its is not, like this:
Code:
<control>
<description>Now playing</description>
<type>button</type>
<id>11</id>
<posX>71</posX>
<posY>291</posY>
<label>4540</label>
<hyperlink>510</hyperlink>
<onright>50</onright>
<onup>12</onup>
<ondown>9</ondown>
<visible>!plugin.isenabled(My Lyrics)</visible>
</control>
<control>
<description>My Lyrics</description>
<type>button</type>
<id>11</id>
<posX>71</posX>
<posY>291</posY>
<label>My Lyrics</label>
<hyperlink>90478</hyperlink>
<onright>50</onright>
<onup>12</onup>
<ondown>9</ondown>
<visible>plugin.isenabled(My Lyrics)</visible>
</control>
This code worked fine in 1.0.2, but its not allowing the control to be selected in 1.1.0. Any ideas how I can get this effect in 1.1.0?