Microsoft communicator presence status in web application

Asked By 7060 points N/A Posted on -
qa-featured

Hi ,

We are using Microsoft communicator in our offices.

Now we are developing an application where we have all the users details of the organization in the web application.

We need to find the communicator presence status of the users so that necessary action can be taken.

This has to be implemented with java script.

How to do that?

Thanks in advance. 

SHARE
Answered By 0 points N/A #80154

Microsoft communicator presence status in web application

qa-featured

Yeah. That is possible.

You could start a HTML page and add the following code into it. Maybe you will have some issues ,but that doesn't matter if you know the basics of HTML and JavaScript.

<script language = "javascript">

var namectrl = new ActiveXObject("Name.NameCtrl");

</script>

Add this script in the head tag. Also include this in the BODY tag so that issue completely gets resolved.

<span onmouseover="namectrl.showOOUI('youremail,0,this.offsetleft,this.offsettop')"onmouseout="namectrl.HideOOUI()">

Hover your mouse over this text to get presence information.

</span>

Cheers.

Related Questions