system.gui.transform(component, [newX], [newY], [newWidth], [newHeight], [duration], [callback], [framesPerSecond], [acceleration], [coordSpace])
JComponent component - The component to move or resize.
Integer newX - An x-coordinate to move to, relative to the upper-left corner of the component's parent container. [optional]
Integer newY - A y-coordinate to move to, relative to the upper-left corner of the component's parent container. [optional]
Integer newWidth - A width for the component. [optional]
Integer newHeight - A height for the component. [optional]
Integer duration - A duration over which the transformation will take place. If omitted or 0, the transform will take place immediately. [optional]
Callable callback - Function to be called when the transformation is complete. [optional]
Integer framesPerSecond - Frame rate argument which dictates how often the transformation updates over the given duration. The default is 60 frames per second. [optional]
Integer acceleration - An optional modifier to the acceleration of the transformation over the given duration. See system.gui constants for valid arguments. [optional]
Integer coordSpace - The coordinate space to use. When the default screen coordinates are used, the given size and position are absolute, as they appear in the client at runtime. When Designer Coordinates are used, the given size and position are pre-runtime adjusted values, as they would appear in the Designer. See system.gui constants for valid arguments. [optional]
Animator animation - An object that contains pause(), resume(), and cancel() methods, allowing for a script to interrupt the animation. See Animator.
Vision Client