# Help with Tweens bugging and sometimes stopping

**URL:** https://forum.kirupa.com/t/help-with-tweens-bugging-and-sometimes-stopping/280854
**Category:** flash
**Created:** [February 2, 2009, 8:37am UTC](https://forum.kirupa.com/t/help-with-tweens-bugging-and-sometimes-stopping/280854 "2009-02-02T08:37:57Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![humbucker](https://avatars.discourse-cdn.com/v4/letter/h/278dde/32.png) [@humbucker](https://forum.kirupa.com/u/humbucker)
#### Post date: [February 2, 2009, 8:37am UTC](https://forum.kirupa.com/t/help-with-tweens-bugging-and-sometimes-stopping/280854/1 "2009-02-02T08:37:57Z")

</div>

Hello,

It seems I got a well-known problem with Tweens, even when using TweenLite or TweenFilterLite, I got a project with several tweens creating the intro and they often often block/stop before their ends.

```auto

public function addPageGauche():void {
pagegauche.x=50;
globalContainer.addChild(pagegauche);                        
TweenLite.from(pagegauche, 1, {alpha:0, ease:Linear.easeIn});
var AlignX:Tween = new Tween(pagegauche, "y", Elastic.easeOut, 150, 0, 2, true); 
}

```

Any advides or things I should rewrite ?

Many thanks kirupa superstars ! ;o-)
