|
|
Prevent Hour Glass Cursor after AVI Ends
Added on 2/15/2000
|
From Technote #12128 from Macromedia.com
-- This handling will prevent the hourglass cursor from
-- flickering when the .AVI sprite ends.
-- Note that 10 ticks is being subtracted
-- from "the duration of member".
-- "10 ticks" is a "serving suggestion"; other amounts
-- may be more appropriate for your movie.
on exitFrame
set myDuration = the duration of member "myVideo"
if the movieTime of sprite theDVSprite < (myDuration - 10) then
go to the frame
else
set the movieRate of sprite theDVSprite = 0
go to the frame
end if
end
|
|