RollOver and RollOut problems

Hi.

I have a small problem with a movieclip.

My movieclip called bild1 has a RollOver AS and a RollOut AS in it.
That works fine, and when I move over the mc the RollOut takes over.

It’s when the I rollover the mc again without having the RollOut to finish the problems start.
Then the mc starts to jump very strange. So does anyone have a bit of code to disable the RollOver to start if the RollOut hasn’t finished.

Here’s my code


this.bild1.onRollOver = function() {
    bild1.gotoAndPlay ("_over");
}

this.bild1.onRollOut = function() {
    bild1.gotoAndPlay ("_out");
}