What if you check contact name? Will the on recieve msg show their chat only name or the same name from the main messenger window?
I expect this wont work since no one else has said it yet.
EDIT:
Nevermind..
quote:
Script is starting
Script is now loaded and ready
Function called: OnEvent_Initialize
Function called: OnEvent_ChatWndReceiveMessage
Receive Message
Origin - The "Using Chat-Only Name" Bradley
Iteration - The "Showering" Bradley - I BangBang
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
Debug.Trace("Receive Message");
Debug.Trace("Origin - "+Origin);
var Contacts = ChatWnd.Contacts;
var e = new Enumerator(Contacts);
for(; !e.atEnd(); e.moveNext())
{
var Contact = e.item();
Debug.Trace("Iteration - " +Contact.Name);
}
Debug.Trace("----------------");
}