How to run only once and not in a sound loop??

The idea is that when the mouse pointer is over a button, a sound is heard, but in my case is repeated again and again, and only want to happen once while the pointer is on top of that button.

if (configBotones.iniciar.Contains(InterfazMenuGUI.MousePosition))
{ 
            camaraBip.audio.Play(); // Bip, bip, bip!!...
}