Actionscript and movieclip

Hello,

I hope I can explain it in English,

I have a movieclip, and there is an image inside. When i click the movieclip the image will enlarge. But when I click the movieclip again it has to reduce to the beginning of the movieclip. But the reducing only works at this moment when the mouse is away from the movieclip. That’s because i use an onRollOut in the actionscript. I don’t know what to use instead.

This is the actionscript I used:

[LEFT]mc1.[COLOR=#000084]stop/COLOR;
mc1.[COLOR=#000084]onRelease[/COLOR] = [COLOR=#000084]function/COLOR{
[COLOR=#000084]this[/COLOR].[COLOR=#000084]play/COLOR;
[COLOR=#000084]delete[/COLOR] [COLOR=#000084]this[/COLOR].[COLOR=#000084]onEnterFrame[/COLOR];
}
mc1.[COLOR=#000084]onRollOut[/COLOR] = [COLOR=#000084]function/COLOR{
[COLOR=#000084]this[/COLOR].[COLOR=#000084]onEnterFrame[/COLOR] = [COLOR=#000084]function/COLOR{
[COLOR=#000084]this[/COLOR].[COLOR=#000084]prevFrame/COLOR;
[COLOR=#000084]if[/COLOR]([COLOR=#000084]this[/COLOR].[COLOR=#000084]_currentframe[/COLOR] == 1) [COLOR=#000084]delete[/COLOR] [COLOR=#000084]this[/COLOR].[COLOR=#000084]onEnterFrame[/COLOR];
}
}[/LEFT]

[LEFT]I hope someone can help me.[/LEFT]

[LEFT]Thanx[/LEFT]