If anyone could shed some light on this problem, I would be very grateful:
I am creating a CD-ROM production using Dir8, on stage is a set of buttons that each should link to a part of a large single quicktime video via ticks specified by StartTime and StopTime.
The script I am using is this:
_______________________________________________
property myDVSprite, myDVStartTime, myDVStopTime
on mouseUp
set myDVStartTime = 69277
set myDVStopTime = 69457
set myDVSprite = (1)
set the movieTime of sprite myDVSprite = myDVStartTime
set the movieRate of sprite myDVSprite = 1
end mouseUp
on exitFrame
myDVStartStopHandler
end
on myDVStartStopHandler
set myDVStartTime = 69277
set myDVStopTime = 69457
set myDVSprite = (1)
if the movieTime of sprite myDVSprite > myDVStopTime then
set the movieRate of sprite myDVSprite = 0
end if
end
____________________________________________________
Problem is, only the button linking to the last segment of the video works, the rest link to their respective sections but DO NOT PLAY the quicktime, ie. I cannot get the rest to play
NOTE: the last video button works perfectly, only the rest do not.
HELP!!!
Thankyou in advance
Paul
I am creating a CD-ROM production using Dir8, on stage is a set of buttons that each should link to a part of a large single quicktime video via ticks specified by StartTime and StopTime.
The script I am using is this:
_______________________________________________
property myDVSprite, myDVStartTime, myDVStopTime
on mouseUp
set myDVStartTime = 69277
set myDVStopTime = 69457
set myDVSprite = (1)
set the movieTime of sprite myDVSprite = myDVStartTime
set the movieRate of sprite myDVSprite = 1
end mouseUp
on exitFrame
myDVStartStopHandler
end
on myDVStartStopHandler
set myDVStartTime = 69277
set myDVStopTime = 69457
set myDVSprite = (1)
if the movieTime of sprite myDVSprite > myDVStopTime then
set the movieRate of sprite myDVSprite = 0
end if
end
____________________________________________________
Problem is, only the button linking to the last segment of the video works, the rest link to their respective sections but DO NOT PLAY the quicktime, ie. I cannot get the rest to play
NOTE: the last video button works perfectly, only the rest do not.
HELP!!!
Thankyou in advance
Paul