i’m using AS3 and I’m trying to change the stage dimensions to get bigger when I press a button. The current dimensions are 550 x 700, and I thought the code:import flash.events.MouseEvent;btn.addEventListener(MouseEvent.CLICK, makeStageBigger);function makeStageBigger(evt:MouseEvent) { stage.stageWidth = 800; stage.stageHeight = 900;}would work, but nothing happens. I’m getting no errors or anything, but when I click the button, it doesn’t work. Any suggestions?