Results 1 to 3 of 3

Thread: How to pause or stop the Adobe Edge animation

  1. #1
    Join Date
    Sep 2011
    Posts
    53

    How to pause or stop the Adobe Edge animation

    Adobe Edge promises Flash-style animation with HTML5 and when I try to use it then I realize this animation tools facility. I use this for the animation purpose. Now I want some tools or some inbuilt method that help to pause or stop the animation. I know that the play () method of edge help to playing the animation but I can’t find any stop or pause method on it. Any help will be appreciate.

  2. #2
    Join Date
    Nov 2008
    Posts
    1,514

    Re: How to pause or stop the Adobe Edge animation

    Yes, this can be possible that you can pause or stop this animation. The code of the java script helps to do this task. first you need to add the following code into the javascript file. This code are as follows:
    /**
    * Adobe Edge Timeline Launch
    */
    $(window).load(function() {
    $.Edge.play();
    });
    Then add the following code into your html file. In that insert this code in between <Head> and </Head> tag. This will be work to solve your complicated problem. The code are as follows:
    <script language="JavaScript">
    $(window).ready(function() {
    //init
    var myEdgeObj = $.Edge.symbol.get($("#stage"))._getTimeline("Default Timeline");
    //play on hover and continue
    $("#stage").mouseenter(
    function(){
    myEdgeObj.play();
    myEdgeObj.addObserver({
    onComplete: function() {
    $.Edge.symbol.get($("#stage")).play("Default Timeline");
    }
    });
    });

    //stop on mouseout
    $("#stage").mouseout(
    function(){
    myEdgeObj.stop();
    });
    });
    </script>
    Try this and I hope that this will be work to pause or stop this animation.

  3. #3
    Join Date
    Mar 2009
    Posts
    1,360

    Re: How to pause or stop the Adobe Edge animation

    I use this code and then I was able to do this stop the animation in the middle of this loading or running process. You can also try this on your animation project. I use this on windows 7 and it works well to solve such problem.

Similar Threads

  1. How to Stop, reduce, or pause downloads while browsing
    By kAKoLI in forum Technology & Internet
    Replies: 4
    Last Post: 05-12-2011, 08:15 AM
  2. Replies: 4
    Last Post: 15-09-2011, 10:13 AM
  3. Replies: 4
    Last Post: 15-09-2011, 08:34 AM
  4. Loop animation in Adobe Edge
    By Pa!trick in forum Windows Software
    Replies: 3
    Last Post: 14-09-2011, 01:25 AM
  5. Help-Need to put animation into website using Adobe Edge
    By fAlCoNeTtI in forum Windows Software
    Replies: 3
    Last Post: 14-09-2011, 01:01 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,635,379.31829 seconds with 17 queries