Jump to content
Search Community

jacynnoru

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by jacynnoru

  1. I have a sign with an action I want to play 5 frames and stops, and I have another gesture I want to play 5 frames in reverse

     

     

    function fl_SwipeToGoToNextPreviousFrame_22(event:TransformGestureEvent):void
    {
    if(event.offsetX == 1)
    {
     TweenMax.to(mc_pan,1,play);
    }
    else if(event.offsetX == -1)
    {
     TweenMax.to(mc_pan,1,reverse);
    }
    }
    

  2. import com.greensock.TimelineMax;
    function cabrasP(event:MouseEvent):void
    {
    if(mc_pan.currentFrame < 49)
    {
     mc_pan.play();
    }
    else if (mc_pan.currentFrame > 49)
    {
     mc_pan.timeline.reverse();
    }
    }
    

     

     

    i have this but my mc cant, play in reverse, what can i do?

×
×
  • Create New...