I apologise for writing such a bad title, could you please edit it so that other people understand what i mean? i will explain:
I'd like to move a shape in a specific location, for example from x:=1000 to x:=600. But, if i write:
shape1.left:=600;
It will move the shape from 1000 (starting location) to 600, but i don't want it to jump 400mm , but first go to 992, then 184, then 176 etc, so that people can see that it is actually moving.
I tried using the command (sleep), but it didn't work, maybe it still jumps 400mm:
Shape1.Left:=1000;
sleep (50);
shape1.Left:=992;
sleep (50);
...
...
Thanks