flash on 2009-9-22

by hacker_9p8x8mco
♥0 | Line 20 | Modified 2009-09-22 17:21:20 | MIT License
play

ActionScript3 source code

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

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="0xffffff">
<mx:ComboBox x="50" y="50" id="itm" change="Changing()">
	<mx:ArrayCollection>
		<mx:Object>カレー</mx:Object>
		<mx:Object>ハンバーグ</mx:Object>
		<mx:Object>たぬきうどん</mx:Object>
		<mx:Object>親子丼</mx:Object>
	</mx:ArrayCollection>
</mx:ComboBox>

<mx:Script>
	<![CDATA[
		import mx.controls.Alert;
		private function Changing():void{
			var sel:String = String(itm.selectedItem);
			Alert.show(sel);
		}
	]]>
</mx:Script>
</mx:Application>