View Single Post
  #2 (permalink)  
Old 02-08-2005, 01:12 PM
poab poab is offline
WebProWorld Member
 

Join Date: Aug 2003
Location: UK
Posts: 77
poab RepRank 0
Default

The concept of Stage is irrelevant if you're loading a movie into it: Stageonly applys to the main timeline.

If you want to scale the movieclip to the size of the Stage try this:

Code:
myClip_mc._x = myClip_mc._y = 0;
myClip_mc._width = Stage.width;
myClip_mc._height = Stage.height;
You'll need to publish for at least flash player 6.

cheers.
Reply With Quote