--- Dennis Landi <[EMAIL PROTECTED]> wrote: > This is an app I would like to move to completion, > but > I don't feel I can do so until I can get an > explanation for this IE behaviour. The reason for > this is because the IE rendering is badly distorting > the tile images in this app. They really need to be > rendered at the intended size. >
> This is an app I would like to move to completion, but I don't feel I can > do so until I can get an explanation for this IE behaviour. The reason > for this is because the IE rendering is badly distorting the tile images > in this app (on my machines). They really need to be rendered at the > intended size. As usually happens when I write a post like that, an idea occurs to me almost immediately. I tried to analyze why macromedia's own site didn't exhibit the problem, and the only difference i could see was the javascript generated nature of the page. Since I intend to dynamically generate the javascript/html via my webserver anyway, this is in-line with my intentions. Long story short generating the page content at run-time via javascript solves the problem. http://dennislandi.com/tiledesigner/tile_designer04.html The simply code to accomplish this for those interested in flash via javascript: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>tile_designer04</title> </head> <body bgcolor="#000000"> <TABLE width="100%" border=0> <TBODY> <TR> <TD align=middle> <SCRIPT language=JavaScript> <!-- var FlashVars = 'a1=' + escape("0000") + '&sesId=' + escape("FB3A791D61DAD40") + '&is_IE=' + escape("FALSE"); document.write( '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="" scale="noscale" width="1000" height="850" id="aws_ringtones" align="">' ); document.write( '<param name="movie" value="tile_designer03.swf">' ); document.write( '<param name="quality" value="high">' ); document.write( '<param name="scale" value="noscale">' ); document.write( '<param name="align" value="left">' ); document.write( '<param name="bgcolor" value="#000000">' ); document.write( '<param name="FlashVars" value="' + FlashVars + '">' ); document.write( '<embed src="tile_designer03.swf" quality="high" bgcolor="#000000" scale="noscale" FlashVars="' + FlashVars + '" width="1000" height="850" name="tile_designer03" align="left" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">' ); document.write( '</embed>' ); document.write( '</object>' ); //--> </SCRIPT> </body> </html> _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

