Is there a way to have a pause and stop, button on the drop down playlist? |
![]() ![]() |
Is there a way to have a pause and stop, button on the drop down playlist? |
Dec 31 2004, 11:26 AM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 8 Joined: Dec 2004 Member No: 75,842 |
...anyone?
|
|
|
|
Dec 31 2004, 11:30 AM
Post
#2
|
|
|
[Aиdy] ![]() ![]() Group: Member Posts: 25 Joined: Dec 2004 Member No: 74,532 |
uhhh... for my dropdown media player the play button is
<input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);"> so if yours is the same... Pause Button <input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.pause(); playstate=2;"> Stop Button <input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.stop(); playstate=2;"> put those codes right below your play button code and everything should work. |
|
|
|
![]() ![]() |