User Guide
fullScreen 791
Example
This statement sets the front property of the model resource named Crate to FALSE, meaning
the front of this box will be open:
member("3D World").modelResource("Crate").front = FALSE
See also
back, bottom (3D), top (3D), left (3D), right (3D)
frontWindow
Usage
-- Lingo syntax
_player.frontWindow
// JavaScript syntax
_player.frontWindow;
Description
Player property; indicates which movie in a window (MIAW) is currently frontmost on the
screen. Read-only.
When the Stage is frontmost,
frontWindow is the Stage. When a media editor or floating palette
is frontmost,
frontWindow returns VOID (Lingo) or null (JavaScript syntax).
Example
This statement determines whether the window "Music" is currently the frontmost window and,
if it is, brings the window "Try This" to the front:
-- Lingo syntax
if (_player.frontWindow = "Music") then
window("Try This").moveToFront()
end if
// JavaScript syntax
if (_player.frontWindow = "Music") {
window("Try This").moveToFront();
}
See also
Player
fullScreen
Usage
-- Lingo syntax
dvdObjRef.fullScreen
// JavaScript syntax
dvdObjRef.fullScreen;
Description
DVD property; specifies whether the DVD should play back in full screen mode. Read/write.
Pressing the escape key returns display mode to non-fullscreen and sets the property to false.
Currently unsupported on Macintosh.