quote:
Originally posted by xJ +
Don't have to delete.
The script will be actived when Messenger starts, and it will automatically deactive when Messenger Exits which is shown by function OnEvent_Initialize(MessengerStart)
{
}
and
function OnEvent_Uninitialize(MessengerExit)
{
}
Respectively.
ok but where to copy this
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}
first this
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}
then
The script will be actived when Messenger starts, and it will automatically deactive when Messenger Exits which is shown by function OnEvent_Initialize(MessengerStart)
{
}
and
function OnEvent_Uninitialize(MessengerExit)
{
}
or what ??