Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi,
is it possible to stop an animation immediately?
In my case the animation just play the sequence till the end after clicking the stop button.
Thank you,
Jonny
FYI: I found the JavaScript command stopping the animation.
scope.stop = function() { // currently "stop" will only stop playback of a playAll when it reaches the end of a step. scope.continuousPlayback = false; };
The stop function is not programmed to stop or to pause the animation immediately.
Have you tried calling the Reset service on the model?
$scope.app.fn.triggerWidgetService('model-1','reset');
--Clay
Hey Clay,
the "reset-service" will reset my complete sequence. In my case I need a function that just pause the animation like a video player or like it is possible in Creo Illustrate.
Ah, I see, I thought you wanted to completely stop the playback, not just pause it. I haven't found a way to do that.
--Clay