Hi kay I've had this problem on Moz and FB, can't for the life of me remember what the solution was though! The black objects seem to randomly (dis)appear while scrolling?
Try adding a class to the object and embed tags and size the movie with CSS. Or you can wrap the object in a block <div> tag - size that using CSS then set the object tag to width and height of 100%. ~may work... The other option is to do away with the embed tag entirely and use Object only the w3c way (a la Satay) (alistapart.com #154). You may have some random issues with IE5 on Win so it depends on who your audience is. Here are some survey results (http://www.antix.co.uk/poll_flashSatay.aspx?i=1&show=results) Funnily enough Mozilla, Opera7 and Safari support <object> far better than IE. I think IE support it's own object tag. Good article here http://www.xml.com/pub/a/2003/07/02/dive.html on this aspect. HTH James Ellis www.webqs.com --- WSG - http://webstandardsgroup.org | Web Standards Group syd::php - http://sydney.ug.php.net | Sydney PHP Developers --- #300 - http://www.sitepoint.com/articlelist/300 --- PS apologies if emails bounce randomly from this account - server probs at the moment. ---------- Original Message ----------- From: "Kay Smoljak" <[EMAIL PROTECTED]> To: "Flash Developers List" <[EMAIL PROTECTED]> Sent: Mon, 20 Oct 2003 19:24:50 +1000 Subject: [fugli] scaling movie in Mozilla > Here's a *really* simple one... > > I'm inserting a Flash movie into a html page. I want it to scale to > 100% of the width of the containing div, which is set to 100% width > and 150px height. Amazingly, IE6 Win is doing it properly, but Mozilla > (1.5) Win is displaying extra "stuff" (ie where the Flash movie > overlapped the stage) in a black area across the top and bottom when > the browser window is scaled down. Safari on Mac gets it perfect and > IE5 in Mac is so bad I don't even want to talk about. If I could just > get it right for Moz on Win I'd be much, much happier. I don't know if > that's an attribute in the embed tag, or a setting in the Flash movie... > > Here's my html: > <div style="width:100%;height:150px"> > <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" > codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,29,0" data="img/movie.swf" width="100%" height="100%"> <param name="movie" value="img/movie.swf"> <param name="quality" value="high"> <param name="scale" value="exactfit"> <embed src="img/movie.swf" width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" scale="exactfit"></embed> </object> </div> > > Thanks a billion for any ideas, > Kay. > > --- > You are currently subscribed to fugli as: [EMAIL PROTECTED] > To unsubscribe send a blank email to [EMAIL PROTECTED] > > MX Downunder AsiaPac DevCon - http://mxdu.com/ ------- End of Original Message ------- --- You are currently subscribed to fugli as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/
