Skip to main content
Participant
September 5, 2007
Question

Fixed Menu

  • September 5, 2007
  • 2 replies
  • 236 views
Hi

How can I make a information (menu, movieClip... ) be locked at the bottom, left, right, top no matter the browser size?
like in http://www.unit9.com/creativemind/

thanks!
This topic has been closed for replies.

2 replies

Inspiring
September 5, 2007
Flash has a Stage class with an onResize event, just add a listener to that event and once it is triggered reposition your mc's with the Stage.width and Stage.height properties.

Cheers,
Gorka
http://www.AquiGorka.com/blog
Inspiring
September 5, 2007
you can use onEnterFrame() and reposition, or onResize (from javascript) and call the function to replace those files...

something like this (in as)...

var rightV = Stage.width - logo_mc._width + 10//10 pixel margin
logo_mc._x = rightV