<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> <![CDATA[ private var foo:int = 7; private function clickHandler(event:MouseEvent,arg1):void { trace(foo); foo.width = foo.width * arg1;
}
]]>
</mx:Script>
<mx:Button id="btn1" click="clickHandler(event,1)"/>
<mx:Button id="btn2" click="clickHandler(event,2)"/>
<mx:Button id="btn3" click="clickHandler(event,3)"/>

