For this the best solution is using actions. To add a new action to an actors in Scene2D just call:
Action action = Actions.moveTo(x,y,duration);
actorObject.addAction(action);
Where x and y is the target location and duration is the speed of this movement in seconds(float).
If you want to sto...