User Guide
_movie 619
_movie
Usage
-- Lingo syntax
_movie
// JavaScript syntax
_movie;
Description
Top-level property; provides a reference to the Movie object, which represents the currently active
movie within the Director player, and provides access to properties and methods that are available
on a movie level. Read-only.
Example
This statement sets the variable objMovie to the _movie property:
-- Lingo syntax
objMovie = _movie
// JavaScript syntax
var objMovie = _movie;
This statement uses the _movie property directly to access the value of the displayTemplate
property:
-- Lingo syntax
theTemplate = _movie.displayTemplate
// JavaScript syntax
var theTemplate = _movie.displayTemplate;
See also
Movie