Microsoft DirectX 9.0 |
To enable users to control the DVD player, you need to provide a UI with buttons for issuing DVD commands such as "Stop" and "Play." The following code example shows how to hook up basic HTML buttons to the MSWebDVD object methods.
<INPUT ID=button1 NAME="button1" TYPE=button VALUE="Play" onClick='Play();'>
<INPUT ID=button2 NAME="button2" TYPE=button VALUE="Pause" onClick='Pause();'>
<SCRIPT LANGUAGE="JScript">
function Play(){
DVD.Play();
}
function Pause(){
DVD.Pause();
}
</SCRIPT>