I have setup an event callback for the enterFrame event, and inside that callback, I also used a transition.to API call to do some display object movement, and at the end of the transition.to(), I have an onComplete callback. Somehow, it appears that the onComplete callback is not triggered.
To my understanding, the enterFrame event is being called 30/60 times every second, I am wondering what would happen if my code block inside the enterFrame event callback takes longer time than the frame rate, would it be the possible cause that not firing the transition.to()'s onComplete callback? How would corona handle if the enterFrame event callback takes longer time than the supposed frame rate? What would happen ?
Thanks.