This content has been marked as final.
Show 1 reply
-
1. Re: Telling Director to continue after a movie is done playing
SeanWilson Nov 10, 2012 7:58 PM (in response to spdorsey6969)Depending on which member type your video uses, you monitor for the current time in the sprite being equal to the duration of its associated member - at which point it has finished playing.
property spriteNum property my property myDuration on beginSprite me my = sprite(spriteNum) myDuration = my.member.duration end on enterFrame me if my.currentTime = myDuration then go next end

