I was given an amazing amount of info before, yet I still cant get the program to work :(
public void act() { if (Greenfoot.mouseClicked(null)) { List all = getObjects(MyActor.class); MyActor a = (MyActor) all.get(Greenfoot.getRandomNumber(all.size())); a.getImage().setTransparency(255); } }