-
1. Re: how to replay entire composition including video and other animation in edge animate cc 2014.1
vivekuma Oct 29, 2014 6:41 PM (in response to aqmikc)Can you share your composition, so that we can check?
Thanks,
Vivekuma
-
3. Re: how to replay entire composition including video and other animation in edge animate cc 2014.1
aqmikc Oct 30, 2014 12:30 AM (in response to vivekuma)When you press start while the video is playing, It starts from the beginning but the video keeps playing.
-
4. Re: how to replay entire composition including video and other animation in edge animate cc 2014.1
vivekuma Oct 30, 2014 12:30 AM (in response to aqmikc)The problem is with the playReverse call for time duration in which video is there.
playReverse actually plays in timeline in revere order 5sec->4sec->...->0sec, but this won't work for video as it doesn't play the video in reverse.
what you can do is that, in the "previous" button click handler, add
if(sym.getPosition() > 7750) {
sym.playReverse();
}
else {
sym.$("trance6")[0].pause();
sym.$("trance6")[0].currentTime = 0;
sym.play(0);
}
Also in "start" button click handler there needs a correction as below:
Use this sym.$("trance6")[0].play();
instead of sym.$("trance6")[0].play("1");
hth,
Vivekuma
-
5. Re: how to replay entire composition including video and other animation in edge animate cc 2014.1
aqmikc Oct 30, 2014 12:42 AM (in response to vivekuma)Thank you much appreciated
Will try this out.
One question
If i want to replay the whole animation, including the video when start button is pressed. How would i do that ?
-
6. Re: how to replay entire composition including video and other animation in edge animate cc 2014.1
vivekuma Oct 30, 2014 1:14 AM (in response to aqmikc)Replace the content for "start" button click event handler with the below code:
sym.$("trance6")[0].pause();
sym.$("trance6")[0].currentTime = 0;
sym.play(0);
hth,
Vivekuma
-
7. Re: how to replay entire composition including video and other animation in edge animate cc 2014.1
aqmikc Oct 31, 2014 2:08 PM (in response to vivekuma)Hello,
I had some questions about the same composition i shared.
I have added a video directly to the stage enabling controls following with a symbol containing animations. i have
While the video is playing if i click the next button, It does not play the symbol containing the animations.
What i was hoping to get is the video stops playing and the slides begin.
The updated composition link:
https://www.mediafire.com/?fzk9dl7vwljtodu
Thanks


