flash on 2010-6-1

by kihon
♥0 | Line 19 | Modified 2010-06-01 20:29:41 | MIT License
play

ActionScript3 source code

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

<?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">
	<mx:Form>
		<mx:FormItem label="ユーザー名" required="true">
			<mx:TextInput id="user" imeMode="{IMEConversionMode.ALPHANUMERIC_HALF}" />
		</mx:FormItem>
		<mx:FormItem label="">
			<mx:TextInput />
		</mx:FormItem>
		<mx:FormItem>
			<mx:Button label="送信する" fontFamily="MS 明朝"/>
		</mx:FormItem>
	</mx:Form>
			
	<fx:Declarations>
		<mx:RegExpValidator source="{user}" property="text" expression="^[一-龻]+$" flags="g"  />
	</fx:Declarations>
</s:Application>