Edit multiple states at once in Flash Builder 4

In development mode in Flash Builder 4 (gumbo, beta 2), is it possible to edit several states at once? In the "status" window, it seems to me that I should be able to shift-select several states, so the changes made will affect all selected states, and if all of them are selected, it will not add a state selector to the property in the mxml tag, No?

+3
source share
2 answers

No, in the flex / flash constructor there is no way to make changes to several states at the same time. What you can try to do, although I’m not sure that it will do what you want in this particular case, but you can make your states based on one specific state. Then, when you change the base state, it applies to the states based on it.

+1
source

You can also just copy the code that was generated from the changes in one state to a new state.

0
source

Source: https://habr.com/ru/post/1719852/


All Articles