Jump to content
Search Community

expint2006

Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by expint2006

  1. hi, maybe a bit off topic but seems edge animate is not quite frequently discussed in GSAP forum, I think it may be good to ask in this post.

     

    Edge animate is no longer being actively developed since Nov2015, which means it's gonna die sooner or later... so, is there any other good alternative to Edge Animate? 

     

    Of course I love the versatility of GSAP on managing the speed and time of animation. As a graphic designer, I'd really like to layout the animation's elements by simple drag and drop, unlike that we have to code everything like in DreamWeaver.

  2. Hello, I have a problem replaying my simple animation, when I clicked the "Replay" button, a looping (repeat=-1) timelineMax which nested in my main timelineMax cannot be killed, and hence continue playing... my code simplified as below:

    replayBTN.buttonMode=true;

    replayBTN.addEventListener(MouseEvent.CLICK, replayOnce);
    function replayOnce(event:MouseEvent):void
    {    
    loopingTL.kill(); // a timelineMax that nested in my main timelineMax, with repeat=-1, GOT ERROR >.<
    main.totalProgress(0); //<<My main timelineMax
    main.restart();
    }

     

    Thanks!!

×
×
  • Create New...