When I send out a private message it appears as it the message is also echoed back to me.
The folowing function is triggered and traces out the message I just sent and my user id
smartFox.onPrivateMessage = function(msg:String, sender:User)
{
trace("A private message from " + sender.getId() + " has arrived: " + msg)
}
The message is also received by the desired user.
Is this behavious correct??
Thank you