Top  | Previous | Next

system.gui.moveComponent

Description

Alters a component's position to a new pair of coordinates, (x,y), a point relative to the upper-left corner of the component's parent. Note that when using relative layout, these coordinates are evaluated as if the component's size was the same size as the last time the component was saved in the Designer. This effectively means that your argument coordinates will automatically scale with relative layout.

Syntax

system.gui.moveComponent(component, x, y)

Parameters

JComponent component - The component to move.

int x - The x-coordinate to move to, relative to the upper-left corner of the component's parent container.

int y - The y-coordinate to move to, relative to the upper-left corner of the component's parent container.

Returns

nothing

Scope

Client

Examples

This code would go in a Timer's propertyChange script for animation.

 

if event.propertyName == "value":

   newX = event.newValue;

   rect = event.source.parent.getComponent("Rectangle")

   system.gui.moveComponent(rect, newX, 250)

 

See also:

system.gui.reshapeComponent

system.gui.resizeComponent