quote:
Originally posted by Orgrim Doomhammer
just a question... is there stg like (!N) that lets you display specific contacts nicknames? because if I use something like slap in a convo with more than one contact it will write the nick of every contact who's participating. I was wondering if there's a code like (!N1) etc. that shows the nick of the 1st contact participating to the convo etc.
No, if you want to reply with only one of them you'll need to code it that way using an enumeration of the
ChatWnd::Contacts object. More info in the
Scripting Documentation.
eg:
code:
for (var e = new Enumerator(oChatWnd.Contacts); !e.atEnd(); e.moveNext()) {
var Contact = e.item();
Debug.Trace(Contact.Name);
}