# Tweening multiple objects in TweenLite

**URL:** https://forum.kirupa.com/t/tweening-multiple-objects-in-tweenlite/319468
**Category:** flash
**Created:** [February 21, 2011, 9:51pm UTC](https://forum.kirupa.com/t/tweening-multiple-objects-in-tweenlite/319468 "2011-02-21T21:51:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![hoolagon](https://avatars.discourse-cdn.com/v4/letter/h/58956e/32.png) [@hoolagon](https://forum.kirupa.com/u/hoolagon)
#### Post date: [February 21, 2011, 9:51pm UTC](https://forum.kirupa.com/t/tweening-multiple-objects-in-tweenlite/319468/1 "2011-02-21T21:51:21Z")

</div>

I’ve recently made the move from Tweener to TweenLite (about time) and am wondering if its possible to pass more than one object into a tween like I could with tweener.

For example, does this tweener syntax…

```auto

Tweener.addTween([movie1,movie2,movie3],{alpha:1, time:1});

```

…need to be divided up into separate tweens in TweenLite or is there another way to do it?

```auto

TweenLite.to(movie1,1,{alpha:1});
TweenLite.to(movie2,1,{alpha:1});
TweenLite.to(movie3,1,{alpha:1});

```

Thanks.  
Julian
