States Includes and Excludes : State « Effects « Flex






States Includes and Excludes

States Includes and Excludes
          

<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->



    <!-- states\StatesSimpleIncExc.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark">
    <s:layout>
        <s:VerticalLayout />
    </s:layout>
    <s:states>
        <s:State name="default" />
        <s:State name="addCheckBox" />
        <s:State name="addTextInput" />
        <s:State name="addCheckBoxandButton" />
    </s:states>
    <s:HGroup>
        <!--
            Included in the addCheckBox and addCheckBoxandButton view states.
        -->
        <s:CheckBox id="myCB" label="Checkbox"
            includeIn="addCheckBox, addCheckBoxandButton" />
        <!-- Included in the addTextInput view state. -->
        <s:TextInput id="myTI" includeIn="addTextInput" />
        <!-- Included in the addCheckBoxandButton view state. -->
        <s:Button id="myB" includeIn="addCheckBoxandButton" />
        <!-- Exclude from addTextInput view state. -->
        <s:TextArea text="Exclude from addTextInput" excludeFrom="addTextInput" />
    </s:HGroup>
    <s:HGroup>
        <s:Button label="Add CheckBox" click="currentState='addCheckBox'" />
        <s:Button label="Show Textinput Only" click="currentState='addTextInput'" />
        <s:Button label="Add CheckBox and Button" click="currentState='addCheckBoxandButton'" />
        <s:Button label="Default" click="currentState='default'" />
    </s:HGroup>
</s:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Add child to StateAdd child to State
2.Add child before in a StateAdd child before in a State
3.Add child to position in a StateAdd child to position in a State
4.Add or remove childrenAdd or remove children
5.Using different creation policiesUsing different creation policies
6.Setting overrides on component propertiesSetting overrides on component properties
7.Change the enabled property for two Button controls, setting one false, and the other trueChange the enabled property for two Button controls, setting one false, and the other true
8.View defining two states
9.View StatesView States
10.Setting event handlers with StateSetting event handlers with State
11.Change control property in state changingChange control property in state changing
12.Remove a child in state changingRemove a child in state changing
13.Create State based on existing StateCreate State based on existing State
14.Set current state to nullSet current state to null
15.Change control color in StateChange control color in State
16.Add child relative to an existing control in StateAdd child relative to an existing control in State
17.Use two statements in click event inlineUse two statements in click event inline
18.Add child and change property when state changedAdd child and change property when state changed
19.Change view stateChange view state
20.Creating a simple view stateCreating a simple view state
21.Set Transition stateSet Transition state
22.Two statements in the click attributeTwo statements in the click attribute
23.Adding and removing components with StateAdding and removing components with State
24.Adding and removing components by changing stateAdding and removing components by changing state
25.Adding and removing components in State with RemoveChildAdding and removing components in State with RemoveChild
26.Applying statesApplying states
27.Using states to control the display of the popup component.Using states to control the display of the popup component.
28.Validate either a United States ZIP code or a Canadian postal codeValidate either a United States ZIP code or a Canadian postal code
29.Define StatesDefine States
30.States Event HandlersStates Event Handlers
31.Deferred view state, and you cannot access it until after the first switch to the Deferred view stateDeferred view state, and you cannot access it until after the first switch to the Deferred view state
32.Use the Reset button to restore the collection view to its original state.Use the Reset button to restore the collection view to its original state.