Name
MoveTextObject -- move text object from a to b
Synopsis
MoveTextObject(id, xa, ya, xb, yb[, table])
Function
This function moves (scrolls) the text object specified by id softly from the location specified by xa,ya to the location specified by xb,yb.

Further configuration options are possible using the optional argument table. You can specify the move speed, special effect, and whether or not the move shall be asynchronous. See MoveBrush for more information on the optional table argument.

Inputs
id
identifier of the text object to use as source
xa
source x position
ya
source y position
xb
destination x position
yb
destination y position
table
optional: further configuration for the move
Example
MoveTextObject(1,100,50,0,50,{Speed = 5})
Moves the text object 1 from 100:50 to 0:50 with speed 5.

Show TOC