I'm using the Active Media Xtra and I've got 3 markers in my video to keep track of using ques.
I'm using this script to call on a flash sprite to go to and play starting at a label name in flash when a marker in the video has been passed. It looks like this:
----------------
on exitFrame me
go to the frame
on cuePassed channel, number, name
if (number = 1) then
goToFrame(sprite (2), "welcome_start"
end if
if (number = 2) then
goToFrame(sprite (2), "section1_start"
end if
if (number = 3) then
goToFrame(sprite (2), "section2_start"
end if
end
--------------
Ok Now it only works on Marker 1 (the welcome_start). After that it doesn't do anything for the rest of the marker. Is it because the conditions has already been satisfied and it doesn't go back and check again? We tried using the "repeat while" statment but that only kept any other handlers and events from working. Can you tell me what I'm doing wrong? Thanks.
I'm using this script to call on a flash sprite to go to and play starting at a label name in flash when a marker in the video has been passed. It looks like this:
----------------
on exitFrame me
go to the frame
on cuePassed channel, number, name
if (number = 1) then
goToFrame(sprite (2), "welcome_start"
end if
if (number = 2) then
goToFrame(sprite (2), "section1_start"
end if
if (number = 3) then
goToFrame(sprite (2), "section2_start"
end if
end
--------------
Ok Now it only works on Marker 1 (the welcome_start). After that it doesn't do anything for the rest of the marker. Is it because the conditions has already been satisfied and it doesn't go back and check again? We tried using the "repeat while" statment but that only kept any other handlers and events from working. Can you tell me what I'm doing wrong? Thanks.