-- Lingo syntaxwindowObjRef.windowBehind // JavaScript syntaxwindowObjRef.windowBehind;
Window property; returns a reference to the window that is behind all other windows. Read-only.
These statements set the variable backWindow to the window behind all other windows, and then moves that window to the front:
-- Lingo syntax backWindow = _player.windowList[5].windowBehind backWindow.moveToFront() // JavaScript syntax var backWindow = _player.windowList[5].windowBehind; backWindow.moveToFront();
moveToBack(), moveToFront(), Window, windowInFront, windowList