Flex動作テストテンプレート

by genms
♥0 | Line 14 | Modified 2009-10-20 20:07:17 | MIT License
play

ActionScript3 source code

/**
 * Copyright genms ( http://wonderfl.net/user/genms )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/gJlH
 */

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" applicationComplete="onApplicationCompleteHandler(event);">
	<mx:Script>
	<![CDATA[
		public function onApplicationCompleteHandler(event:Event):void {
			// ここに処理を書く
		}

		public function btnClickHandler(event:Event):void {
			// ここに処理を書く
			txt.text = "Hello";
		}
	]]>
	</mx:Script>
	<mx:Button id="btn" label="click" click="btnClickHandler(event);"/>
	<mx:TextArea id="txt" width="300" height="200"/>
</mx:Application>

Forked