flash on 2009-9-13

by hacker_9p8x8mco
♥0 | Line 13 | Modified 2009-09-13 09:17:42 | 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/9rcx
 */

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
	<mx:Script>
		<![CDATA[
			[Bindable]
			private var indexes:Array = [{label:"Books",data:"Books"},{label:"DVD",data:"DVD"},{label:"Music",data:"Music"}];
		]]>
	</mx:Script>
	<mx:Panel title="binding" width="100%" height="100%" layout="vertical" paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5">
		<mx:Label text="{index.selectedItem.data}"/>
		<mx:ComboBox id="index" dataProvider="{indexes}" width="120"/>
	</mx:Panel>
</mx:Application>