quote:
Originally posted by Aloshi
Doesn't work...Heres what I have (The email is just an example):
function OnEvent_Initialize(MessengerStart)
{
Messenger.OpenChat(smarterchild@hotmail.com);
}
function OnEvent_Uninitialize(MessengerExit)
{
}
You need to put the address in quotes if you are specifying the address
code:
function OnEvent_Initialize(MessengerStart) {
Messenger.OpenChat('smarterchild@hotmail.com');
}