How can I play an Edge animation onclick?

3.9k Views Asked by At

I want to have an Adobe Edge animation, which plays after a visitor clicks an ordinary HTML form button. How can this be done?

1

There are 1 best solutions below

0
On BEST ANSWER
ball_edge.js

remove:
$(window).load(function() {
$.Edge.play();
});


The HTML file

Add immediately before </HTML>:
<script>
$("#RoundRect1").click(function () {
$.Edge.play();
});
</script>