javafx and problem with several consecutive transitions separated by a stop method

Started by
-1 comments, last by dutpas 7 years, 6 months ago

I have some trouble about a behavior with Javafx in specific transitions use.

The classical use of transitions works fine with any kinds of transitions. Super!

But, now, I want to do that:

- one parallelTransition is launched. It includes a fadeTransition, a scaleTransition, ...

- when an external event occurs (not the end of the previous transition), I stop the running parallelTransition (with its stop method).

- then, I create any new Transition

- I play it

The behavior:

- The 1st parallelTransition is correctly stopped

- The new Transition is running until its end (onFinished processing) BUT, in fact, the image does not follow the required transformations

An idea?

This topic is closed to new replies.

Advertisement