A Oliver wrote:
> Can I get some help.. I have a script playing a movie, when a button is
>
> clicked.. When it is finished playing the movie I would like it to go
> to
> another card or stack.. Either of which is easiest to do..
If your movie plays to the very end - this script will work. (Put it into
the script of the player.)
on playStopped
-- Put code here
-- Go to this card or that stack
end playStopped
If the your movie stops before the "duration" then you'll want to use:
(Put it into the script of the player.)
on playPaused
-- Put code here
-- Go to this card or that stack
end playPaused
Use your button to start the player - then let the player's script take
over from there.
Hope this helps!
Jack Rarick
Braintree Athletic Systems
Archives: http://www.mail-archive.com/[email protected]/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.