In AgiStudio, the help file and the compiler reckon it's
move.obj.v(oA,vX,vY,STEPSIZE,fDONEFLAG);It's actually
move.obj.v(oA,vX,vY,vSTEPSIZE,fDONEFLAG);where stepsize is a variable.
so try
v150 = 1;
move.obj.v(o0,v100,v101,150,f89);notice how i used 150 as a parameter and not v150? That's because the compiler is expecting a number. It'll all work in the end though.
Use any variable to store the stepsize.. v150 is just an example case.
- Nick