My app has 2 frames; in frame 1 there are 5 MC and on a DOUBLE_CLICK
event the target\'s color change and go to the next frame 2.
In frame 2 I have a button to
If you make a class for the movieclips (you have 5 I believe) that they all share. Create a class property called myColor, then update each individual movieclip object's "myColor" property whenever it is double-clicked and the color changes, you can make the "goBack()" method re-apply each movieclip's color from its own property.
Does this make sense?