I have Director movie that is being driven by a large video and I am using the Tabuleiro extra to set cue points to show slides in time with the video, all of that works fine.
The video moves too quickly at one spot and we don't have time to reedit it. So, I set up a script that pauses the video at a specific cue. That part works fine.
The problem comes when I try to unpause the video. I want it to pause for 5 seconds, then start playing again. I added the following code starting from "startTimer", to the existing code with no luck in the restart. What am I doing wrong?
on cuePassed me, whichChannel, cuePointNumber, cuePointName
if sprite(11).member = member ("winn-35Qf2"
then
Sprite(12).pause()
startTimer
if (the timer < 60 * 5) then
Sprite(12).play()
end if
else if cuePointName="gomenu" then
go to "presentationsmenu"
else
sprite(11).member = member (cuePointName)
end if
end cuePassed
The video moves too quickly at one spot and we don't have time to reedit it. So, I set up a script that pauses the video at a specific cue. That part works fine.
The problem comes when I try to unpause the video. I want it to pause for 5 seconds, then start playing again. I added the following code starting from "startTimer", to the existing code with no luck in the restart. What am I doing wrong?
on cuePassed me, whichChannel, cuePointNumber, cuePointName
if sprite(11).member = member ("winn-35Qf2"
Sprite(12).pause()
startTimer
if (the timer < 60 * 5) then
Sprite(12).play()
end if
else if cuePointName="gomenu" then
go to "presentationsmenu"
else
sprite(11).member = member (cuePointName)
end if
end cuePassed