<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/09/12/introducing-the-stylemanagerselectors-property-in-flex-3/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
		layout="vertical"
		verticalAlign="middle"
		backgroundColor="white"
		creationComplete="init();" viewSourceURL="srcview/index.html">

	<mx:Script>
		<![CDATA[
			import mx.styles.StyleManager;

			private function init():void {
				arr = StyleManager.selectors;
				arr.sort(Array.CASEINSENSITIVE);
				list.dataProvider = arr;
			}
		]]>
	</mx:Script>
	
	<mx:Style>
		TitleWindow {
			backgroundAlpha: 0.4;
			backgroundColor: haloSilver;
			borderAlpha: 0.4;
			borderColor: haloSilver;
			cornerRadius: 12;
		}
	</mx:Style>

	<mx:Array id="arr" />

	<mx:TitleWindow title="StyleManager.selectors:"
			status="({arr.length} items)"
			dropShadowEnabled="false"
			roundedBottomCorners="true">
		<mx:List id="list" width="300" />
	</mx:TitleWindow>

</mx:Application>

