Please help. I want to move a Movie Clip randomly on stage. Let me elaborate. I want the MC moves towards _x+ upto, say, 100, it then
moves towards_y+ upto, say, 100, it then moves towards _x- upto, say,
50, then it moves toeards _x+, say, upto 300 and then towards _y- upto,
say, 150 and so on and so on. I tried it this way but did not succeed.
on Load {
xstep=5
ystep=5
}
on enterFrame{
_x=_x+xstep
if _x>100
_y=_y+ystep
if _y>100
_x=_x+xstep
}
It stops here. the MC does not move further in _x+ direction. The script may look silly to experts. I beg to confess that I’m an amateur flash user
trying to excel.