--
global videoChannel, videoDuration
global sliderChannel, sliderLeft, sliderRight
on prepareMovie
-- Initiate global variables
-- Sprite number of the QuickTime video
videoChannel = 1
-- Get the duration of the video
videoDuration = member("QuickTime movie").duration
-- Sprite number of the slider
sliderChannel = 3
-- Left most position of the slider
sliderLeft = 80
-- Right most position of the slider
sliderRight = 230
end prepareMovie
--