If you're able to approach this from the other side (eg, from ActionScript in the Flash file itself), there is a really, really, REALLY simple way to make a fluid flash movie.
You can read about it here: http://morethanseven.net/fluidflash/ Here is the ActionScript: Stage.scaleMode = "noScale" Stage.align = "TL" var width var height function resizeEvent ( ) { width = Stage.width height = Stage.height dimensions.text = 'width : ' + width+ ' height : ' + height topRight._x = width bottomLeft._y = height bottomRight._y = height bottomRight._x = width } resizeEvent ( ) var stageListener = new Object ( ); stageListener.onResize = resizeEvent Stage.addListener ( stageListener ); On 12/21/06, Bob Ippolito <[EMAIL PROTECTED]> wrote:
On 12/22/06, csnyder <[EMAIL PROTECTED]> wrote: > > On 12/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > The problem seems to be when I do a swapDOM. > > > > What can I do to make this work in IE. > > This isn't a real answer, but if you need it to work *right now* you > can use innerHTML rather than DOM methods... after much > experimentation, that's what I ended up doing on a similar project. I've always just used SWFObject to take care of that sort of thing. http://blog.deconcept.com/swfobject/ -bob >
-- | Matthew Kwiecien • Webhosting | Design | delihosting.com | neoteria.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MochiKit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/mochikit?hl=en -~----------~----~----~----~------~----~------~--~---
