I am developing a game that uses spine animations I have successfully managed to get the animations playing either just once or looping as follows: Play once ------------ rabbit.state.setAnimationByName("animation", false); Looping ---------- rabbit.state.setAnimationByName("animation", true); Is there a command to make the animation go back to frame 1. I would like to reset the animation to the first frame once the user clicks on a button. I also need to know when the animation has finished playing - is there any way to add a listener to detect when it reaches the final frame of the animation? If there is a list of all the commands available for Spine animations that would be really helpful. Thanks