Doğru Cevap
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Music Test</title> <script language="javascript"> function playMusic(nm) { obj = document.embeds[nm]; if(obj.Play) obj.Play(); return true; } function stopMusic(nm) { obj = document.embeds[nm]; if(obj.Stop) obj.Stop(); return true; } function rewMusic(nm) { obj = document.embeds[nm]; if(obj.Rewind) obj.Rewind(); return true; } </script> </head> <body> <button type="button" onclick="return playMusic('myMusic');">Play Music</button> <button type="button" onclick="return stopMusic('myMusic');">Stop Music</button> <button type="button" onclick="return rewMusic('myMusic');">Rewind Music</button> <embed name="myMusic" src="../tunes/song.mid" type="audio/midi" autostart="false" hidden="" loop="true" mastersound width="128" height="128"></embed> </body> </html>