flash on 2010-6-4

by kihon
♥0 | Line 25 | Modified 2010-06-04 05:56:03 | 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/vj1S
 */

<?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:Accordion id="accordion" height="200" x="200" y="100">
		<s:NavigatorContent label="A">
			<s:Label text="AAA" />
		</s:NavigatorContent>
		<s:NavigatorContent label="B">
			<s:Label text="BBB" />
		</s:NavigatorContent>
		<s:NavigatorContent label="C">
			<s:Label text="CCC" />
		</s:NavigatorContent>
		<s:NavigatorContent label="D">
			<s:Label text="DDD" />
		</s:NavigatorContent>
	</mx:Accordion>
	<s:VGroup>
		<s:Button label="Aを開く" click="accordion.selectedIndex = 0" />
		<s:Button label="Bを開く" click="accordion.selectedIndex = 1" />
		<s:Button label="Cを開く" click="accordion.selectedIndex = 2" />
		<s:Button label="Dを開く" click="accordion.selectedIndex = 3" />
	</s:VGroup>
</s:Application>