Как установить функцию увеличения в AS3 Flash. Я пытаюсь запустить функцию увеличения при запуске моего видео, а затем запускать эту функцию каждые 20 секунд, пока видео не остановится.
что-то вроде:
my_player.addEventListener(VideoEvent.COMPLETE, completePlay);
my_player.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, startPlay);
function startPlay(){
startInc();
//OTHER items are started and set within this function that do not have to do with the incremented function.
}
function completePlay(){
//This is where the startInc is stopped but not removed since it will be used again.
}
function startInc(){
//This function should run every 20 seconds.
}