Jump to content
Search Community

to AND from [SOLVED]

friendlygiraffe test
Moderator Tag

Recommended Posts

I dont think this functionality is there in TweenLite as it's meant to be a cut down version of TweenMax. It is definitnely there in TweenMax tho. Have a look see here:

http://www.greensock.com/as/docs/tween/ ... ml#fromTo()

 

You could fake it in TweenLite I think though. Try this:

 

TweenLite.from(myClip, 1, { x:100, y:100, delay:1, onComplete:function()
		{
			TweenLite.to(myClip, 1, { x:200, y:200 } )
		}
		} );

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...