flex ボタンイベントのテスト
♥0 |
Line 28 |
Modified 2010-03-30 20:32:38 |
MIT License
archived:2017-03-30 08:09:44
ActionScript3 source code
/**
* Copyright shohei909 ( http://wonderfl.net/user/shohei909 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/rLCB
*/
<?xml version="1.0" encoding="utf-8"?>
<!--
flexのボタンイベント
-->
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="resetClick(null)"
>
<mx:Label id="Lbl" text="" color="0xE02213"/>
<mx:HBox>
<mx:Button id="btn1" label = "button" click="buttonClick(event);"/>
<mx:Button id="reset1" label = "reset" click="resetClick(event);"/>
</mx:HBox>
<mx:Script>
<![CDATA[
import flash.events.MouseEvent;
var counter = 0;
private function resetClick(event:MouseEvent):void{
counter = 0;
Lbl.text = "buttonが" + counter +"回押されました";
}
private function buttonClick(event:MouseEvent):void{
counter++;
Lbl.text = "buttonが" + counter +"回押されました";
}
]]>
</mx:Script>
</mx:Application>