movie

Usage

-- Lingo syntax
windowObjRef.movie

// JavaScript syntax
windowObjRef.movie;

Description

Window property; returns a reference to the movie object that is playing in a specified window. Read-only.

Example

This statement displays in the Message window the movie object that is playing in the window named Empires:

-- Lingo syntax
trace(window("Empires").movie)

// JavaScript syntax
trace(window("Empires").movie);

See also

Window