param object
Use the param element to specify additional object properties.
The properties depend on the embedded application.
Syntax:
Methods that return the object:
| document.createElement ("param") |
The base interface, through which you can add new functionalities to the param object, is the HTMLParamElement interface.
If you want to see the HTML objects by categories, please visit this page.
HTML page for this element: param |
Possible members:
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Example HTML code 1:
This example illustrates the use of the param and object elements to embed a Macromedia Flash Movie. The codeBase attribute of the object tag is missing from this example. You can check the version of the user's Flash player with this attribute in Internet Explorer, and if it does not exist or its version is lower than required, the browser pops up an installation dialog. Unfortunately, the use of the codeBase attribute causes problems in Firefox. See Example 2 for a cross-browser solution or the codeBase attribute for further details.
|
||||
<object data="flash.swf" type="application/x-shockwave-flash" width="300px" height="200px"> <!-- If flash player is not installed, pluginurl helps the user to download it in Firefox --> <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" /> <param name="movie" value="flash.swf" /> <param name="bgcolor" value="#FFFFE0" /> <param name="quality" value="high" /> </object> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the param element with Macromedia Flash Player.
It clearly focuses on cross-browser support only, and it isn’t standards-compliant, but there isn't any standards-compliant cross-browser way to embed a Flash application into a document with Flash Player detection.
It clearly focuses on cross-browser support only, and it isn’t standards-compliant, but there isn't any standards-compliant cross-browser way to embed a Flash application into a document with Flash Player detection.
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="120" codebase="http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"> <param name="movie" value="flash.swf" /> <!-- Optional params --> <param name="play" value="true" /> <param name="loop" value="true" /> <param name="quality" value="high" /> <!-- END Optional --> <embed src="flash.swf" width="300" height="120" play="true" loop="true" quality="high" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" /> </object> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 3:
This example has similar functionality to the previous one, but it creates the Macromedia Flash Movie dynamically.
|
|||||
<head> <script type="text/javascript" src="flash.js"></script> <script type="text/javascript"> function CreateFlash () { var flashContainer = document.getElementById ("flashContainer"); var flash = new Flash (); flash.Init (flashContainer, "flash.swf", 300, 200); flash.SetParam ('bgcolor', '#000000'); flash.SetParam ('quality', 'high'); flash.Create (); } </script> </head> <body onload="CreateFlash ()"> <div id="flashContainer"></div> </body> |
|||||
|
|||||
Did you find this example helpful?
|
Related pages:
External links:
User Contributed Comments