Forum Moderators: open
The odd thing is that the .swf, when embedded and viewed in the web page, is displayed extremely small.
I have checked my code - the width and height are declared properly.
I am embedding the .swf using SWFObject [blog.deconcept.com], but the same problem occurs if I use the Flash Satay method [a-list-apart.com]. Here are code snippets showing both versions:
The SWFObject embedding method:
IN THE HEAD:
<script type="text/javascript" src="swfobject.js"></script>
IN THE BODY:
<div id="flash-logo">
<p>Requires Flash player and Javascript.</p> <!-- shown to browsers without Flash and JS -->
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject( "logo.swf", "logo", "610", "81", "9", "#000000" );
so.addParam( "wmode", "transparent" );
so.write( "flash-logo" );
// ]]>
</script>
</div>
That's just the HTML obviously - the imported JS is the standard SWFObject library.
And the Satay method to embed:
<div id="flash-logo">
<object type="application/x-shockwave-flash" style="width:610px; height:81px;" data="logo.swf">
<param name="movie" value="logo.swf">
<param name="wmode" value="transparent"><a href="http://www.macromedia.com/go/getflash/">Requires Flash player</a> <!-- shown to browsers without Flash -->
</object>
</div>
Now both methods work correctly with embedding and resizing other flash content on the same page. So there is something wrong with this particular embedding instance. Furthermore, the problem .swf appears small in all browsers (IE6+, Opera, Firefox, etc).
I am not at all a Flash pro. This .swf was provided to me by the client. Does the problem as described above sound like it is not a embedding error but is an issue caused by the .swf itself?