Question
Unable to adjust panel height via buttons
I want to adjust the height of the swf panel by a button in the swf panel plugin, the following code doesn't seem to work
high200.addEventListener(MouseEvent.CLICK, onBtnClick);
function onBtnClick(e:MouseEvent):void {
var jsfl:String = new String();
jsfl += "fl.getDocumentDOM().height = 200;";
MMExecute(jsfl);
}