What happens to a group after a transition.dissolve ?

Hi,

When someone clicks a button on my app I do a transition.dissolve between 2 groups and it works perfectly.

Trouble is the only way for me to bring the group back is to do another transition.dissolve.

transition.dissolve( Group1, Group2 )

How do I get Group1 back on the screen without doing a transition. I checked the isVisible property and that is true.

Dave [import]uid: 117617 topic_id: 22762 reply_id: 322762[/import]

Looking at the documentation, it seems like there is a lot of mystery surrounding this transition.dissolve :slight_smile:

http://developer.anscamobile.com/content/transitiondissolve

Did you check the .alpha of the first group? Perhaps the .alpha is set to 0 while the .isVisible is still true.

Also, I wonder why it doesn’t have an onComplete… that would be useful to remove the first group when it is no longer needed (if you wanted to, that is.) [import]uid: 70391 topic_id: 22762 reply_id: 90839[/import]

I believe you’ll find green.castle is correct about the alpha being set to 0 still, I did this myself the other day without thinking. [import]uid: 52491 topic_id: 22762 reply_id: 90881[/import]

Ok, cheers guys.

Didn’t even think about the Alpha.

Dave

[import]uid: 117617 topic_id: 22762 reply_id: 90929[/import]