scroll down playlist with stop |
![]() ![]() |
scroll down playlist with stop |
Dec 13 2004, 05:00 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 3 Joined: Dec 2004 Member No: 71,422 |
ive seen the code for the playlist but all that one does is play. ive also seen in xangas a playlist that can stop and pause and i was wondering if anyone had a code for that. thx
|
|
|
|
Dec 13 2004, 05:12 PM
Post
#2
|
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Nov 2004 Member No: 64,520 |
i've got the code..
first you have to find the play button code.. it looks like this: <input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);"> after you find that piece of code you just have to change it to this: <input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);"> <input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.pause(); playstate=2;"> <input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.stop(); playstate=2;"></p> yup.. simple as that.. |
|
|
|
![]() ![]() |