View Single Post
Old 10-16-2011, 05:46 AM   PM User | #2
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,604
Thanks: 2
Thanked 399 Times in 392 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
Code:
<?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"
			   width="434" height="100">
	<fx:Script>
		<![CDATA[
			
			protected function setState(stateName:String):void
			{
				this.currentState = stateName;
			}
			
		]]>
	</fx:Script>
	
	<s:states>
		<s:State name="state1" />
		<s:State name="state2" />
	</s:states>
	<s:RichEditableText x="38" y="45" text="Click Me! Set State 1" click="setState('state1')" />
	<s:RichEditableText x="38" y="65" text="Click Me! Set State 2" click="setState('state2')" />
	<s:Label x="276" y="45" text="Current State: {this.currentState}"/>
	
</s:Application>
Inigoesdr is offline   Reply With Quote
Users who have thanked Inigoesdr for this post:
DevilRay (10-17-2011)