Page 1 of 1

Display a message to all users in the room

Posted: 27 Mar 2006, 10:39
by pixelDepth
Hey,

I want to display a message to all users in the room. So when someone enters the room, I want to let everyone know "XXX has entered the room". I tried an extension, but it only displayed the message for the person who entered the room. I also tried a room variable, but for some reason, I couldn't get that to work.

Any ideas? :)

Thanks

Posted: 27 Mar 2006, 11:01
by Virusescu
you have at your disposal an event handler on the client side API called onUserEnterRoom

Code: Select all

smartFox.onUserEnterRoom = function(roomId:Number, userObj:Object)
{
	trace("User " + userObj.getName()+" entered room with id "+roomId);
}

Posted: 27 Mar 2006, 12:27
by pixelDepth
:o How did I miss that?

Thanks very much :) :D