Feedback

  • Contents
 

IS_System_AgentName

Definition

IS_System_AgentName returns the name of the agent. See also IS_System_AgentID, which return the ID of an agent. Scripter will recognize click events from any HTML element whose name has an associated action documented in this API (e.g.: "IS_Action_CallComplete"). If the script needs to associate several buttons with the same action, then define the action using a meta element and call the click event on the meta element from buttons.


Example

In the example below, IS_Attr_Name must be a column returned from a database.

<body>
    <p>Hello, this is <em name="IS_System_AgentName"></em>.</p>
    <p>May I please speak with Mr./Mrs. <em name="IS_Attr_Name"></em>?</p>
</body>