Jump to content
Search Community

gilbejam

Members
  • Posts

    3
  • Joined

  • Last visited

gilbejam's Achievements

0

Reputation

  1. That's awesome, thanks mate. I was looking in the wrong spot for the code to be breaking. Much appreciated. J
  2. Thanks for having a look at this. Hopefully its just something simple i'm doing wrong. There's a big comment in the code where the error occurs. Basically just look for this: var myTimeline:TimelineMax = new TimelineMax({align:TweenAlign.SEQUENCE, onComplete:gotoProfile}); Thanks in advance, Yep, the whole project is in AS3 James
  3. Hi there. Hope somebody is able to help me on this one. I've only just started using TimelineMax for tween sequences and I've come across some strange behaviour. Basically, the problem is that I can tween in sequence other properties of my movieclip EXCEPT the scaleX or scaleY. Here's the code: var myTimeline:TimelineMax = new TimelineMax({align:TweenAlign.SEQUENCE, onComplete:gotoProfile}); myTimeline.append(new TweenMax(theClip, 1, {x:theClip.x + 10, scaleX:2, scaleY:2, ease:Circ.easeOut})); myTimeline.append(new TweenMax(theClip, 0.75, {x:theClip.x - 10,scaleX:1, scaleY:1, ease:Cubic.easeIn})); myTimeline.append(new TweenMax(theClip, 1, {alpha:0})); I can't think why this might be occurring. Any help is greatly appreciated. Thanks, J
×
×
  • Create New...