test.html 475 B

123456789101112131415161718192021222324252627282930
  1. <HTML>
  2. <HEAD>
  3. <TITLE>Scriptable Plug-in Test</TITLE>
  4. </HEAD>
  5. <BODY id="bodyId">
  6. <center>
  7. <h1>Scriptable Plug-in </h1>
  8. </center>
  9. <br><br>
  10. <center>
  11. <embed id="pluginobj" type="application/x-winampx-1.0.0.1" width=600 height=0><br>
  12. <script>
  13. var pluginobj = document.getElementById('pluginobj');
  14. </script>
  15. <br>
  16. <form name="formname">
  17. <br>
  18. <input type=button value="alert(pluginobj.getVersion())" onclick='alert(pluginobj.getVersion())'>
  19. </form>
  20. </center>
  21. </BODY>
  22. </HTML>