diff --git a/src/tweens/tween/BaseTween.js b/src/tweens/tween/BaseTween.js index 7a83c5a7f..07c611a15 100644 --- a/src/tweens/tween/BaseTween.js +++ b/src/tweens/tween/BaseTween.js @@ -417,7 +417,15 @@ var BaseTween = new Class({ { this.parent.makeActive(this); - this.dispatchEvent(Events.TWEEN_ACTIVE, this.callbacks.onActive); + if (this.isTimeline) + { + // TIMELINE_ACTIVE? + this.dispatchEvent(Events.TWEEN_ACTIVE, this.callbacks.onActive); + } + else + { + this.dispatchEvent(Events.TWEEN_ACTIVE, this.callbacks.onActive); + } }, /**