Jump to content
Search Community

mistafista

Members
  • Posts

    6
  • Joined

  • Last visited

mistafista's Achievements

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. nevermind. I added fastmode:true and got the results I wanted.
  2. Is it possible to do ease effects on a motionblur? I had to switch development from as3 to as2. AS3 code: timeline.append(new TweenLite(myMC, .5, {autoAlpha:1, scaleX:1, scaleY:1, x:108, y:18, motionBlur:{strength:2, quality:3}, ease:Bounce.easeInOut})); to AS2 code: timeline.append(new TweenMax(myMC, .5, { _xscale:100, _yscale:100, _x:108, _y:18, motionBlur:{strength:2, quality:3}, ease:Bounce.easeInOut})); Is this code correct? It doesn't give me the same results.
  3. I want to jump to a frame in the main timeline after a sequence of tweens happen. ----- var timeline:TimelineLite = new TimelineLite(); timeline.appendMultiple( [new TweenLite(finalMC, 1, {alpha:0}), new TweenLite(maskMC, 1, {delay:.5, x:0, y:0}),], .3); timeline.insert (TweenLite.to("ROOT", 1, {frame:5})); ------- Help?
  4. I purchased the motionBlur plugin by becoming a green member. I copy/pasted the code from the plugin explorer and cannot get any results. import com.greensock.*; import com.greensock.easing.*; TweenLite.to(box, .5, {x:223, y:74, motionBlur:{strength:10, quality:3}, ease:Cubic.easeInOut}); http://www.kfabove.com/300x250.html HELP!
×
×
  • Create New...