'codeBase' Example : codeBase « Javascript Properties « JavaScript Reference

'codeBase' Example

    
<html>
<head>
<script language="JavaScript">
    function activate() {
        document.all.myObject.codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0";
    } 
</script>
</head>
<body>
<object id="myObject" width="250" height="230"> 
<param name="movie" value="yourfile.swf"> 
<param name="quality" value="high">
<embed src="yourshockwavemovie.swf" 
       quality=highpluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlashtype="application/x-shockwave-flash" 
       width="250" 
       height="230">
</embed> 
</object>
</body>
</html>

    
      
      








Related examples in the same category

1.'codeBase' Syntax and Note
2.'codeBase' is applied to