I'm using the flash's video player to play a clip, autoplay is set to false. I need to trigger mc1 playing when the play button is first clicked, and trigger mc2 when the video completes.
Now I know how to do the complete trigger with:
videoPlayer.addEventListener(VideoEvent.COMPLETE, vidCompleteHandler);
But I have no idea what video event I need for when the video first plays, because I don't want mc1 to be triggered everytime the play button is clicked (i.e. if people click pause then play again, i don't want mc1 to be triggered again).
Can someone help me with this?