| video end options | potato | 10/26/09 8:50 AM | I'm trying to do something which I thought would be simple. Basically I want the main timeline to jump to a different frame when the video ends but it's very unclear what I have to do for this. The online help says: "You can also choose Call functio |
| Re: video end options | danny.b | 10/26/09 11:12 AM | On the timeline you would define a function: function onVidEnd(){ gotoAndPlay(10); } In the video component's inspector Video End Options > Call Function, you would enter onVidEnd You can't paste into text fields with keyboard shortcuts. You can |
| Re: video end options | M1lkyBarK1d | 1/12/12 12:34 AM | Hi Im having a similar problem. I've have tried your suggestion but when the video ends nothing happens. i have the following code in frame one of main timeline function onVidEnd(){ trace("End"); _root.play();} and onVidEnd in the Video end options |
| Re: video end options | tupe_tups | 1/24/12 12:40 PM | Hi Guys, You can use listeners for that to set-up this: For V1 DC Components AS2 videoInstance.addEventListeners("onVideoComplete",VidCompleteEvt) function VidCompleteEvt($:*){ trace("onVideoComplete") } ------------------------------------------ |
| Re: video end options | M1lkyBarK1d | 1/24/12 12:59 PM | Brilliant - thanks Cris |
| Re: video end options | ABU ELLIFE | 4/18/12 6:24 PM | |
| Re: video end options | David Wong | 12/27/12 4:44 PM | |
| Re: video end options | David Wong | 12/27/12 4:44 PM |