stage

Usage

-- Lingo syntax
_movie.stage

// JavaScript syntax
_movie.stage;

Description

Movie property; refers to the main movie. Read-only.

This property is useful when sending a message to the main movie from a child movie.

Example

This statement displays the current setting for the Stage:

-- Lingo syntax
put(_movie.stage.rect)

// JavaScript syntax
put(_movie.stage.rect);

See also

Movie