sorry to spam....But i decided to turn my brain on and type this:

Actionscript Code:
oneHit = false;
twoHit = false;

stop();

then i have 2 buttons playing 2 movies

Actionscript Code:
on (keyPress "1") {
    if(oneHit == false){
        this.movie1.gotoAndPlay("2");              
         oneHit = true;    
     }else {
   
    this.movie1.gotoAndPlay("31");
    }
}

and button 2

Actionscript Code:
on (keyPress "2") {
    if(twoHit == false){
        this.movie2.gotoAndPlay("2");
         twoHit = true;
    } else {
   
    this.movie2.gotoAndPlay("31");
    }
}

So i think ALL fixed now!