User Guide

aboutInfo 621
This statement uses the _sound property directly to access the soundLevel property:
-- Lingo syntax
theLevel = _sound.soundLevel
// JavaScript syntax
var theLevel = _sound.soundLevel;
See also
Sound
_system
Usage
-- Lingo syntax
_system
// JavaScript syntax
_system;
Description
Top-level property; provides a reference to the System object, which provides access to system and
environment information, including system level methods. Read-only.
Example
This statement sets the variable objSystem to the _system property:
-- Lingo syntax
objSystem = _system
// JavaScript syntax
var objSystem = _system;
This statement uses the _system property directly to access the freeBytes property:
-- Lingo syntax
theBytes = _system.freeBytes
// JavaScript syntax
var theBytes = _system.freeBytes;
See also
System
aboutInfo
Usage
-- Lingo syntax
_movie.aboutInfo
// JavaScript syntax
_movie.aboutInfo;
Description
Movie property; a string entered during authoring in the Movie Properties dialog box. Read-only.