How do you indicate that multiple mouseover events have to be true before something happens?

For example:

on (rollOver, keyPress"<Space>") {
play();
}

the above code will play if I roll over the button with my mouse, OR if I press the space bar. Is there a way to specify that I must first be mousing over the button and THEN press the space bar, for the play action to take place?