flash on 2010-6-17

by albatrus_jp
♥0 | Line 17 | Modified 2010-06-17 17:39:13 | MIT License
play

ActionScript3 source code

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

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
			   xmlns:s="library://ns.adobe.com/flex/spark" 
			   xmlns:mx="library://ns.adobe.com/flex/mx">
 
	<fx:Script>
		<![CDATA[
			protected function clickaction(event:MouseEvent):void
			{
				button.label = "FLASH";
			}
		]]>
	</fx:Script>
 
    <s:TextInput x="200" y ="20" id="input" imeMode="ALPHANUMERIC_HALF"/>
    <s:TextInput x="200" y ="40" text = "{input.text}" imeMode="ALPHANUMERIC_HALF" />
	
	<s:Button x="101" y="195" label="ボタン"  click="clickaction(event)" id="button" />
</s:Application>