I think this might be quite simple... please help me stop a movieclip!

Hi everyone,

im very new to AS3 so sorry if this is a basic question!

I made a movie clip which is a turnip - when you click it its leaves grow. (it has a button on top of it as i wanted the mouse curser to change to a hand so the user knows it will do something)

this is the script i used for the button

turnip1.addEventListener(MouseEvent.MOUSE_UP,turnipGrow);
function turnipGrow(event:MouseEvent){
turnip1.play();
}

my probem is that i only want it to happen once then if the user clicks the turnip again nothing happens. at the moment the leaves dissapear and grow again on the second click (and on every click)

its all on one frame.

also… is there a way to make the mouse curser change to the hand without making a button? can it be done with a movie clip?

Thanks very much for any help!

Kira