I am scaling a movieClip often and need to place it on the screen in certain places according to its size.
Once scaled, how can I get the WIDTH and HEIGHT of a movie clip?
trace(my_mc.width); /// would equal 333
/// This code makes my movie clip fit in the correct proportions.
my_mc.height = stage.stageHeight;
my_mc.scaleX = my_mc.scaleY;
/// Its been resized!
trace(my_mc.width); /// STILL equals 333
..
Any ideas how to get new width and height?
stage.stageWidth
andstage.stageHeight
since I started Flash dev. upvoted – Bitterblue