Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Eine der häufigsten Anwendungen für Zustände ist das Hinzufügen und Entfernen von Komponenten. Sie können das <mx:AddChild>-Tag verwenden, um eine oder mehrere Komponente(n) einzufügen. Nachfolgend definieren wir einen Zustand namens newTextInput, der eine Button-Komponenteninstanz einfügt:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
<mx:states>
<mx:State name="newTextInput">
<mx:AddChild>
<mx:TextInput id="textinput" />
</mx:AddChild>
</mx:State>
</mx:states>
<mx:Button id="button" label="Klick" click="currentState='newTextInput'" />
</mx:Application>