moveToFront()
Usage
-- Lingo syntax
windowObjRef.moveToFront()
// JavaScript syntax
windowObjRef.moveToFront();
Description
Window method; moves a window in front of all other windows.
Parameters
None.
Example
These statements move the first window in
-- Lingo syntax
myWindow = _player.windowList[1]
myWindow.moveToFront()
// JavaScript syntax
var myWindow = _player.windowList[1];
myWindow.moveToFront();
If you know the name of the window you want to move, use the syntax:
-- Lingo syntax
window("Demo Window").moveToFront()
// JavaScript syntax
window("Demo Window").moveToFront();
See also
moveToBack(),
moveVertex()
Usage
-- Lingo syntax
memberObjRef.moveVertex(vertexIndex, xChange, yChange)
// JavaScript syntax
memberObjRef.moveVertex(vertexIndex, xChange, yChange);
Description
Function; moves the vertex of a vector shape cast member to another location.
The horizontal and vertical coordinates for the move are relative to the current position of the
vertex point. The location of the vertex point is relative to the origin of the vector shape member.
Changing the location of a vertex affects the shape in the same way as dragging the vertex
in an editor.
Window
in front of all other windows:
windowList
moveVertex()
407
Need help?
Do you have a question about the DIRECTOR MX 2004-DIRECTOR SCRIPTING and is the answer not in the manual?
Questions and answers