Jump to content
Search Community

nothingGrinder

Members
  • Posts

    5
  • Joined

  • Last visited

nothingGrinder's Achievements

0

Reputation

  1. sorry to bother you, but is there any way to override that feature?
  2. cheers, didn't realize that. I read through the docs but obviously not well enough. Huge help and thanks for being so patient.
  3. Okay, So I am using two object: var inobj = {x:30, y:150}; var stopobj = {x:30, y:170}; and then I am calling those objects in sequential tweens like this: TweenLite.to( TheClip, 0, inobj); TweenLite.to( TheClip, .5, stopobj); When I remove the first tween, the animation looks and is positioned properly. With the first 0 tween in there, the end x,y values are 60, 320. They are being added together instead of replacing each other... perhaps the objects are being combined... ? It seems like there is something here related to the way the library is functioning... but will continue digging around my code. Please advise. Aaron
  4. thats what I thought. I'll dig in a bit more see what I can come up with. If I find anything out of the ordinary in relation to TweenLite, I'll post back here. Thanks for the reply.
  5. Hello, I am using tweenlite to animate my transitiions. I have a tween object that looks like: var myobj = {x:30, y:150} My tween gets called on transition in and then on stage Resize its called again, shortly after the transition in. On the first call from transition in the x,y values trace as 30, 150. But, shortly after when its called again in the stage Resize function the x,y values of the object trace as 60, 300. The tween code I'm using looks like this: TweenLite.to( TheClip, .5, myobj); how can I prevent this from happening? In fact, this has never happening to me in all my years using GreenSock tweening library. Please Advise.
×
×
  • Create New...