hi,
I am unable to notice any visible change in the motion of my MC if I use the following code:
onClipEvent (load) {
function accel (finalX) {
distance = finalX-_x;
if (distance > 0) {
_x += ( _x * .4) ;
}
}
}
onClipEvent (enterFrame) {
this.accel(400);
}
what is wrong here?




Reply With Quote