On 5/9/07, Derrick Anderson <[EMAIL PROTECTED]> wrote: > SO.. if my default state needs to hide a panel (removeChild) that gets added > in state 2, how do you do it?
In your state 2, you add the object. In your base state, you do nothing -- the object added in state 2 will get removed automatically. Any changes specific to a state are "rolled back" once you get out of that state.

