While i am translating button one position to another position, the animation add within container only. Actually i need to translate the Button some inner container xy points to parent container xz points. This is my code.
tileAnimation[count]=ParallelAnimation::create(mPlayField[count])
.add(TranslateTransition::create().toY(1200).duration(3000))
.add(FadeTransition::create().to(0).duration(3000));
How can i do this? Its working fine in single container. If my design has container within container its making problem.