How can I access the base state in mxml like I do the other states ?
<mx:states>
<mx:State name="watch" >
<mx:RemoveChild target="{button2}"/>
I have tried
<mx:State name="" >
and
<mx:State name="base" >
I want to use this because there is a bos that is added dymanicall while
in another state and I want to remove it when I go back to the base state.
I could make a psuedobase copy of the the base state and use that, or I
could try to do it in action script, but it seems like the whole point
of having a base state is that we don't have to do stuff like that.