Answered
Resize a moviclip to a Stage Size
People have a problem, how can I do to resize the size of my movieClip and the content of my movieClip(swf, jpg) to the stage?
Tanks
Tanks
use a Stage onResize listener:
Stage.scaleMode = "noScale"
var lo:Object={};
lo.onResize=function(){
yourmovieclip.width=Stage.width;
yourmovieclip.height=Stage.height;
}
Stage.addListener(lo);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.