views:

20

answers:

2

How can you tell if a Tween is currently playing when using TweenLite?

A: 

Why not register a onComplete callback to check when the tween has finished instead (i.e. when it has finished playing)

Theo.T
A: 

Hi onepiece,

You can't do this with TweenLite, you'll need to switch to TweenMax instead. Then you will be able to call isTweening() to determine this.

Hope that helps, Tyler.

Tyler Egeto