Quote from: slasher on Sun 04/05/2014 17:03:08Code: ags if (Button74.Animate(17, 1, 4, eRepeat))
Button.Animate does not return a value, it is the command to start the button animating. So, obviously, this won't work.
As you pointed out, there's not any type of Button.Animating property to let you know if the button is currently animating. The best option presently is just to create a separate bool variable to track it yourself. When you call Button.Animate, set the bool to true. When you stop the animation (e.g., change the NormalGraphic), set the bool to false. Then you can check if the button is animating by checking your variable.