I am new to Flex. Recently, I am learning about 'state' concept in Flex.
When state is changed, we can define the new properties for the new state overidding the properties of the base state.
But, I had a doubt.
What is the difference between using setProperty() and removeChild() in Flex ?
Take the following case.
Suppose there are 2 Vbox inside the application container. When the state is changed by some event, I need only 1 VBox in the appln container.
(a) Should I set setProperty for that particular VBox of width and height to 0 ? or
(b) Should I remove the VBox from the new state by using removeChild() property ?