Adobe Edge: Add Oncomplete Handler When Animation Finishes
I am using the latest version of Adobe Edge. I have a simple 5 image animation. I would like to be able to execute a custom function when the 5th image is done its animation. How c
Solution 1:
In _edgeActions.js add the following:
Symbol.bindTimelineAction(compId, symbolName, "Default Timeline", "complete", function(sym, e) {
alert('Timeline Complete');
}
or Open the code window (Window -> Code, or Ctrl +E).
Then, click on the "+" next to get Stage -> timeline -> complete and add your code there.
Post a Comment for "Adobe Edge: Add Oncomplete Handler When Animation Finishes"