Posted by Travis Newbury on 12/24/06 00:39
trig wrote:
> I have downloaded the swfobject.js file from....
> This code works to scale the movie:
Wrap that code in javascript and all will be fine. Remember to use
noscript and just put the Object code there. That way anyone without
javascript turned on will still see your flash.
> <object
> codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab..."
>
> name="flashcontent" width="100%" height="100%" align="middle"
> id="my_site_v3">
> <param name="allowScriptAccess" value="sameDomain" />
> <param name="movie" value="my_site_v3.swf" />
> <param name="quality" value="high" />
> <param name="bgcolor" value="#131313" />
> <embed src="my_site_v3.swf" width="100%" height="100%" align="middle"
>
> quality="high" bgcolor="#131313" name="flashcontent"
> allowscriptaccess="sameDomain" type="application/x-shockwave-flash"
> pluginspage="http://www.macromedia.com/go/getflashplayer" />
Also, use this as your template for the Flash and you can lose embed:
<object type="application/x-shockwave-flash" data="yourswf.swf".....
<param name="movie" value="yourswf.swf"/>
[Back to original message]
|