Walking AI

I’m part of this team made up from some of my friends and i’m working on a game where the cows’ need to randomly walk around the screen. What would I do? I could just tell the cows what coordinates they need to go to and then they would just loop. But that’s too much extra work and no doubt it would not come out looking very good at all.
I have no idea where to start from, any resources and source code would be much appreciated.

you giving the cows a coordinate and looping it would simply make them move in the same manner over and over again… why dont you look at the tutorial on kirupa for random movement…
http://www.kirupa.com/developer/actionscript/random_motion.htm

Fabio, I realize that they would loop over and over again. The exact reason why I’m not doing it that way (I don’t mean to sound short)… And thx for the link.

Have a function that picks a random point in a given area. And have that function placed in another function that tells the cow how to get there. Then have the one function that contains the other, run every couple of seconds. Here, for example:

onClipEvent(load){
var sec:Number = 1000;
function pickPoint() {};
function goToPoint(){
...
pickPoint();
}
setInterval(goToPoint,sec*7);

If you want me to, I’ll make you a .fla of it. I’ve used this engine before.