| 
O.P.  RE: How to open group chat windows
 Well, let me show you what my problem was, may be you figure it out. 
 
I had.... 
var sEmails = new  
 
Array("mail1@hotmail.com","mail2@hotmail.com","mail3@hotmail.com"); 
 
var ContactoUno = Messenger.MyContacts.GetContact(sEmails[0]); 
var ContactoDos = Messenger.MyContacts.GetContact(sEmails[1]); 
var ContactoTres = Messenger.MyContacts.GetContact(sEmails[2]); 
 
before any function, when I realised I needed global variables in order to be accessed by any function, but the fact was that I had to redefine ContactoUno, ContactoDos, ContactoTres y every function I wanted to use it because I'd get an error if I didn't... 
So, they are global but need to be defined in every function? in that case the script worked indeed... or what else could be wrong? 
 
 |