Adobe Connect User Community
Menu

#1 2008-03-27 08:22:13

**_nblavoie_**

Enter/Exit of users in a meeting from Breeze SDK.

Hello,

I would like to know when a user enter/leave a meeting in Connect. I know I can use the Breeze SyncSWF SDK to get this information, but I didn't found a correct example.

And, the following code doesn't work... I'm a bit lost here.


[code]txtZone.text += "Application charg

Offline

#2 2008-03-27 09:12:54

**_nblavoie_**

Re: Enter/Exit of users in a meeting from Breeze SDK.

I'Ve tried a different code, here it is :

[code]breeze.addEventListener("caughtUp", this);
breeze.addEventListener("userLeft", this);
breeze.addEventListener("userJoined", {userName: breeze.userName, userID:breeze.userID},true);

function caughtUp() {
    txtZone.text += "CaughtUp ("+breeze.userName+").\n";
}

function syncMessageReceived(p_evt:Object){
    txtZone.text += "Message re

Offline

#3 2008-03-27 09:28:40

**_nblavoie_**

Re: Enter/Exit of users in a meeting from Breeze SDK.

Well, trying to figure it out... I just need the userName of the user who enter/left the meeting. Nothing more... With this information, I will do HTTP request to confirm, in a database, that a user just joined/left the meeting.

Offline

Board footer