-- Lingo syntaxwindowObjRef.moveToBack() // JavaScript syntaxwindowObjRef.moveToBack();
Window method; moves a window behind all other windows.
None.
These statements move the first window in windowList behind all other windows:
-- Lingo syntax myWindow = _player.windowList[1] myWindow.moveToBack() // JavaScript syntax var myWindow = _player.windowList[1]; myWindow.moveToBack();
If you know the name of the window you want to move, use the syntax:
-- Lingo syntax
window("Demo Window").moveToBack()
// JavaScript syntax
window("Demo Window").moveToBack();