A problem in auto scaling
hello all
in swishmax
I got very tired of solving auto scaling this file
https://board.flashkit.com/board/ima.../2022/12/1.jpg
Scene_1 code :
PHP Code:
onFrame (2) {
fscommand("ShowMenu",false);
stop();
Stage.scaleMode = "noScale";
Stage.align = "TL";
var scaleObject = new Object();
Stage.addListener(scaleObject);
scaleObject.onResize = function() {
main._x=0;
main._width = Stage.width;
main._height=Stage.height;
if(Stage.width>Stage.height){
main._x=0;
main._width=Stage.width;
main._height=Stage.height;
}else if(Stage.height>Stage.width){
main._x=0;
main._width=Stage.width;
main._height=Stage.height;
}
};
}
but when i test the file , this is the result
https://board.flashkit.com/board/ima.../2022/12/2.jpg
file : https://app.box.com/s/0jpujmfkonr4aqpquqjs859lrcvuo7cz