Discussion:
Playlist
(too old to reply)
Skynet
2004-12-02 23:28:08 UTC
Permalink
Hi everyone,

i created my own skin which includes a playlist.
But playlist is always shown everytime i switch to skin mode.

I'd like the playlist is hidden until i push the playlist button, but i
don't know how programming for having this behaviour.

Can anyone help me?

Thanks
Skynet
Simon K
2004-12-10 16:55:03 UTC
Permalink
Post by Skynet
I'd like the playlist is hidden until i push the playlist button, but i
don't know how programming for having this behaviour.
Try:
<PLAYLIST
visible="false" //Add this line to your playlist element
/>

and for your button:
<BUTTONELEMENT
mappingColor = "#FF00FF"
value="show playlist"
onClick = "showplaylist(); "
/>

...for your scriptfile

function showplaylist()
{
pl.visible=true;
}

/Simon K

Loading...