> hi
>
[quoted text clipped - 6 lines]
> You can see this here:
> http://www.detkendesign.com/detken2/portfolio.htm
The link isn't working, but anyway, store your positions in variables
instead of in the object itself. Incrementing the object's properties
directly can result in decimal place round-off etc. Many objects
won't increment certain properties in a linear way.
Instead of something like _x++
Use an storage variable like this..
xpos++;
Then assign it to _x:
_x = xpos;
Start with whole numbers and keep it on whole numbers..
Initialize to a whole number to start..
xpos = 100;
Then add only whole numbers...
xpos += 5;
tralfaz