-- Lingo syntaxwindowObjRef.movie // JavaScript syntaxwindowObjRef.movie;
Window property; returns a reference to the movie object that is playing in a specified window. Read-only.
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);