diff -r 913c9751c067 -r 716254ccbcc0 org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-F9E3AC4C-2883-450F-835C-B5F8E2AC6325.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/org.symbian.tools.wrttools.doc.WebDeveloper/html/GUID-F9E3AC4C-2883-450F-835C-B5F8E2AC6325.html Fri Mar 05 19:11:15 2010 -0800 @@ -0,0 +1,40 @@ + + +beep()

beep()

+

Syntax:

+
[void] sysinfo.beep(Int frequency, Int duration)
+

Description:

+

The beep method produces a beep tone in a specified frequency for a specified duration.

+

Argument:

+
    +
  • frequency:

    + +

    Defines the frequency of the tone measured in Hz (Hertz).

    + +
  • +
+

Note: The maximum and minimum values for frequency are naturally device-specific. If the specified frequency is out of the device's supported range, the maximum frequency is applied.

+
+
    +
  • duration:

    + +

    Defines the duration of how long the beep tone lasts. The period is measured in milliseconds.

    +

    If the duration is 0, the beep tone will last infinitely.

    + +
  • +
+

Return value:

+

This method does not return a value.

+

Remarks:

+

To stop an infinitive beep, call the beep method again with any value that is different from 0.

+

Example code:

+
function beepAlert()
+{
+   // call the beep function with frequency 220Hz 
+   // for the duration 2 seconds
+   sysinfo.beep(220, 2000);
+}
+
\ No newline at end of file