User Guide

returnToTitle() 509
In the following example, the two statements
diceRoll
roll = the result
are equivalent to this statement:
set roll = diceRoll()
The statement set roll = diceRoll would not call the handler because there are no
parentheses following
diceRoll; diceRoll here is considered a variable reference.
See also
return (keyword)
resume()
Usage
-- Lingo syntax
animGifSpriteRef.resume()
// JavaScript syntax
animGifSpriteRef.resume();
Description
Animated GIF method; causes the sprite to resume playing from the frame after the current frame
if it’s been paused. This command has no effect if the animated GIF sprite has not been paused.
Parameters
None.
See also
rewind() (Animated GIF, Flash)
returnToTitle()
Usage
-- Lingo syntax
dvdObjRef.returnToTitle()
// JavaScript syntax
dvdObjRef.returnToTitle();
Description
DVD method; resumes playback after a menu has been displayed.
Parameters
None.