-- Lingo syntax _player // JavaScript syntax _player;
Top-level property; provides a reference to the Player object, which manages and executes all movies, including movies in a window (MIAWs). Read-only.
This statement sets the variable objPlayer to the _player property:
-- Lingo syntax objPlayer = _player // JavaScript syntax var objPlayer = _player;
This statement uses the _player property directly to access the value of the xtraList property:
-- Lingo syntax theXtras = _player.xtraList // JavaScript syntax var theXtras = _player.xtraList;