I create a document which has 990px width and 40px height. I create a button and when I click the button I want to swf height grow up to 250px. Like this: http://demo.linkz.net/LinkZmasthead/turkcell/gece_kusu/default.html
I tried to change stage height but swf height doesn't grow up.
var mc:MovieClip;
mc = this["buton"];
mc.buttonMode = true;
mc.mouseChildren = false;
mc.addEventListener(MouseEvent.CLICK, clickHandler);
function clickHandler(e:MouseEvent):void {
// codes
}
How can I solve this issue? Thank you