Share Posted August 30, 2012 I'm having trouble using object oriented TweenLite.fromTo and the paused:true parameter. The following doesn't work var myTween = new TweenLite.fromTo(photo, 1.5, {width:0, height:0, paused:true}, {width:100, height:200}); In what way should paused:true be correctly applied? Link to comment Share on other sites More sharing options...
Share Posted August 30, 2012 Special properties like that ("paused", "delay", "ease", "onComplete", etc.) always go in the toVars parameter. You put paused in the fromVars var myTween = new TweenLite.fromTo(photo, 1.5, {width:0, height:0}, {width:100, height:200, paused:true}); 1 Link to comment Share on other sites More sharing options...
Author Share Posted August 31, 2012 dowaDowp! thx a million ! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now