| leroyh 2005-03-31, 6:26 pm |
| hi, I have some wmv embedded into a webpage. I want to create my own
controls, so I have bugun and sucessfully created play, pause, stop, mute.
However fullscreen just won't work, I've looked on the web property is correct.
this is my code: <p> <EMBED type='application/x-mplayer2' NAME='Player'
pluginspage='http://microsoft.com/windows/mediaplayer/en/download/' id='Player'
showcontrols='true' showtracker='true' showstatusbar='true' width='360'
height='288' src='room1/video/1_hi.wmv' autostart='true' loop='true' > </EMBED>
</p> <p> <INPUT type = button value = 'Pause' name = FSBUTTON onclick =
'Player.Pause();'> <INPUT type = button value = 'Play' name = FSBUTTON
onclick = 'Player.Play();'> <INPUT type = button value = 'Stop' name =
FSBUTTON onclick = 'Player.Stop();'> <INPUT type = button value = 'Mute' name
= FSBUTTON onclick = 'Player.Mute='true';'> <input type = button value =
'Full Screen' name = FSBUTTON onClick = 'Player.fullScreen='true';'>
</p> any ideas ?
|