<html>
<body>
<embed id="myEmbed" src="helloworld.swf" width="200" height="200" style="border:1px solid">
<p>Click the button to change the width of the flash animation to 500 pixels.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myEmbed").width = "500";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_embed_width2 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 15:53:01 GMT -->
</html>