Previous page Next page

Add to Speed Dial Functionality

Add to Speed Dial is referred to as Add to Phone Book by WTA. When a user clicks on the add to speed dial tag, the web will transfer the name and number to the speed dial application of the Avaya 4620 IP Telephone, which will allow the user to edit and save the entry to their speed dial list.

To enable the add to speed dial functionality, use the following syntax:

wtai://wp/ap;number;name

This code can be embedded into any valid WML tag that implements href or a hyperlink such as <a> tag, <anchor>, <do>, <option>, or <onevent> tags by associating these tags with a <go> tag.

Add to speed dial using <a> tag:

<?xml version=”1.0”?>

<!DOCTYPE wml PUBLIC “-//WAPFORUM//DTD WML 1.3//EN”

“http://www.wapforum.org/DTD/wml13.dtd”>

<wml>

<card id=”addap1” title=”Add to speed dial Demo”>

<p>

My number is:

        <a href=”wtai://wp/ap;5551212;My Company”>5551212</a>

</p>

</card>

</wml>

The above-generated code is rendered as the following diagram:

The code will add the entry to the speed dial group with the name “My Company” on the speed dial screen of an Avaya 4620 IP Telephone. A Save icon precedes this hyperlink, indicating that it is an “add to speed dial” number. When this link is selected on the phone, the web transfers the name and number (“My Company” and “5551212”) to the telephone’s speed dial application. Users can then edit and save the entry to their speed dial list.

NOTE:

A Save icon is generated only when an <a> tag is used.


Previous page Next page