* @param x the end x coordinate
* @param y the end y coordinate
*/
public void move(int x, int y) {
if (running) return;
Rectangle r = MyDOM.getBounds(elem, false);
Effect xe = new Effect(elem, "x", r.x, x);
Effect ye = new Effect(elem, "y", r.y, y);
start(new Effect[] {xe, ye});
}