app.moveWindow

Syntax app.moveWindow (windowRectangle)

Params windowRectangle indicates the new size and position for the target window.

Action Moves and resizes the target window so that it covers the rectangle.

Returns False if there is no target window.

Examples app.start ("MinApp"); app.moveWindow (rectangle.set (100, 100, 200, 500))

   » true

Platform Notes This verb is only implemented in the Mac OS version of Frontier.

Notes You can determine a window's position by calling app.getWindowPosition.

See Also app.getWindowPosition

Discuss