Jump to content
Search Community

leticiAH

Members
  • Posts

    1
  • Joined

  • Last visited

leticiAH's Achievements

0

Reputation

  1. Hello! I'm a newbie to TweenMax and would LOVE help! I have a mini gallery with a left and right arrow, 4 images. What I need to accomplish is this: click on a button and a blur transition occurs between images. Here's my code: import com.greensock.*; left_btn.addEventListener(MouseEvent.MOUSE_DOWN, blurImageL); right_btn.addEventListener(MouseEvent.MOUSE_DOWN, blurImageR); function blurImageL(event:MouseEvent):void { TweenMax.to(images_mc, 1, {blurFilter:{blurX:12, blurY:12, onComplete:unblurL}}); } function blurImageR(event:MouseEvent):void { TweenMax.to(images_mc, 1, {blurFilter:{blurX:12, blurY:12, onComplete:unblurR}}); } function unblurL(event:Event=null):void { TweenMax.to(images_mc, 1, {blurFilter:{blurX:0, blurY:0}}); } function unblurR(event:Event=null):void { TweenMax.to(images_mc, 1, {blurFilter:{blurX:0, blurY:0}}); } function prevImage(event:Event=null):void { images_mc.prevFrame(); } function nextImage(event:Event=null):void { images_mc.nextFrame(); } What happens is the code runs the MouseEvents, but then freezes on the blurred image and doesn't go to the next function. Thanks!
×
×
  • Create New...