I have a Deck with AnimationEnabled (true). I want to know when the animation finishes when I change the deck to do other tasks.
I guess the answer would be impossible to do this
Have you tried subclassing DeckPanel and overriding onComplete() ?
DeckPanel
onComplete()
public MyDeckPanel extends DeckPanel{ @Override protected void onComplete(){ super.onComplete(); //What you want to do once the animation completes } }