-- Lingo syntax
_sound.beep({intBeepCount})
// JavaScript syntax
_sound.beep({intBeepCount});
Sound method; causes the computers speaker to beep the number of times specified by intBeepCount. If intBeepCount is missing, the beep occurs once.
intBeepCount Optional. An integer that specifies the number of times the computers speakers should beep.
-- Lingo syntax
on mouseUp me
_sound.beep(1)
end mouseUp
// JavaScript syntax
function mouseUp() {
_sound.beep(1);
}