moveTo bgcolor="#FFFFFF">

moveTo.lib
(Requires kernel.lib)

moveTo: The moveTo function moves a DIV to an Array of coordinates called x and y. delay indicates the amount of milliseconds of delay between each move of the DIV and will accept Arrays as well. The command field indicates the commands to run after the DIV has finished moving.

div("name").moveTo(x[],y[],delay,"command");
div("name").moveTo(x[],y[],delay[],"command");

Move stop: This command will stop the current DIV while it is moving.

div("name").moveStop()

Move resume: This command will resume the current moveTo().

div("name").moveResume()