how to make actor move one direction when we make some noise? need immediate help!!! please i have to move the continuously moving actor stickman towards left when we make noise or else continue to its real movement..
import greenfoot.*;
/**
* This is a stick man. Make him move right when you make noise or else continueously move left.
*
* @author
* @version
*/
public class Stickman extends Actor
{
/**
* Make the stickman act.
*/
public void act()
{
move(3);
}
}

