1

About Adobe Edge Preview 4 Click Here

I tried the code below for testing. Expected result is clicking the button, then load the animation dynamically.

<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript" src="edge_includes/jquery-1.6.2.min.js"></script>
    <script type="text/javascript">
    $(window).load(function() {
        $('button').click(function() {
            $('body').load('ajax.txt');
        });
    });
    </script>
</head>
<body>
    <button>show</button>
</body>
</html>

Content in ajax.txt:

<div id="stage" class="EDGE-49494571"></div>
<script type="text/javascript" src="ys-slider_edgePreload.js"></script>

But it doesn't work. Is there any solution to load it properly?

Kara
  • 6,115
  • 16
  • 50
  • 57
Yad Smood
  • 2,752
  • 2
  • 24
  • 37
  • No perfect solution yet. I wrote a small library to handling the complex animation which means no visual editing during debug. I am thinking to use python to import the coordinate, opacity and other properties created by Edge to my lib. If any one can give me the source code of Edge's js lib, this problem may be much easier. – Yad Smood Mar 17 '12 at 09:43
  • why don't you do a show/hide? – henry bemis Feb 28 '13 at 19:03

0 Answers0