|
-
 Originally Posted by Nig 13
Great, Danny22, but maybe he's using AS2 since he mentioned this: Stage.scaleMode = "showAll";
It's a bit different in AS2, but the concept is the same:
Actionscript Code:
Stage.scaleMode = "noScale"; Stage.align = "TL";
resizeListener = new Object(); resizeListener.onResize = function(){ // example code, this will align // a movieclip to the center of your Flash mc._x = Stage.width/2; mc._y = Stage.height/2; } Stage.addListener(resizeListener);
There was a good tutorial in AS2 for this as well, but it was deleted recently 
Yikes, good point. I only ever did a tiny bit of AS2 and for some reason thought that either the string of the StageScaleMode property was the same. Also, I need to tab out my code better, heh.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|