Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

The VMS object corresponds to the Voice Message Service system object.

Operator format to describe actions with the voice message service is:

DoReact("VMS","_id_","_command_" [,"_parameters_"]);

List of commands and parameters for the VMS object is presented in the following table:

Commandcommand description

Parameters

Description of parameters

"SEND" – send message.

modem<>

Name of device

pulse<>

Type of dialing (0 – tonal, 1 – pulse)

name<>

Object name

redial_attempts<>

Number of call attempts

redial_delay<>

Pause between call attempts

waitfordialtone<>

Waiting for line signal (0 - no, 1 – yes)

flags<>

Flags

Properties of the VMS object are shown in the table.

Properties of the VMS object

Description of properties

ID<>

Object ID

PARENT_ID<>

Parent object ID

 Examples of using events and reactions of the Voice Message service object:

  1. It is required to send message while performing macro 1 if modem is connected to COM2 port, type of dialing is tonal, do not wait for tonal signal.

    OnEvent("MACRO","1","RUN")
    {
     DoReact("VMS","1","SEND","modem<2>,pulse<1>,waitfordialtone<0>");
    }
  • No labels