cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

Freeze animation

Jonny
8-Gravel

Freeze animation

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

4 REPLIES 4
Jonny
8-Gravel
(To: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

Top Tags