abstract:
<PARAM NAME=movie VALUE="/templates/images/powerETPro.swf"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="/templates/images/powerETPro.swf" quality=high bgcolor=#FFFFFF swLiveConnect=FALSE WIDTH="65" HEIGHT="305" NAME="pedigree_home" TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
Not sure why they do that, you see any the benifts of doing it that way?, other then that page size be little smaller as JS function comes from sourced JS file
Hi,
To display flash,
I see someone doing
Code:- function showDemo1()
- {
- document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ID="Home-Middle" WIDTH="65" HEIGHT="305" ALIGN="">');
- document.write('<PARAM NAME=movie VALUE="/templates/images/powerETPro.swf"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF> ');
- document.write(' <EMBED src="/templates/images/powerETPro.swf" quality=high bgcolor=#FFFFFF swLiveConnect=FALSE WIDTH="65" HEIGHT="305" NAME="pedigree_home" TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer">');
- document.write(' </EMBED>');
- document.write(' </OBJECT>');
- }
Copy Code and the calling in html
Code:instead of doing put the code straight in HTML
Code:- <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ID="Home-Middle" WIDTH="65" HEIGHT="305" ALIGN="">
- <PARAM NAME=movie VALUE="/templates/images/powerETPro.swf"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF>
- <EMBED src="/templates/images/powerETPro.swf" quality=high bgcolor=#FFFFFF swLiveConnect=FALSE WIDTH="65" HEIGHT="305" NAME="pedigree_home" TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer">
- </EMBED>
- </OBJECT>
Copy Code Not sure why they do that, you see any the benifts of doing it that way?, other then that page size be little smaller as JS function comes from sourced JS file |