Beep command

The usage of this command is quite simple, you just need to type this anywhere in an OzML script, and the command will play a simple beep sound.

Parameters

This command does not require any additional parameters.

OzML example

The following example is about to show, how easy you can implement the Beep command into your OzML script. The Speak command tells that you will hear the beep sound after two seconds, and after the Delay, the beep sound will be played.

<?xml version="1.0"?>
<Response>
    <Speak>After 2 seconds, you will hear the beep sound.</Speak>
  	<Delay>2</Delay>
  	<Beep/>
</Response>

More information