O.P. RE: Run Windows Media Player from WLM
Can someone please tell me how to fix my script so that it doesn't send the message to the contact, if you get what i mean.
Heres the Script:
function OnEvent_ChatWndSendMessage(ChatWnd, Message)
{
if(Message == "!wmp")
{
ChatWnd.SendMessage("/run C:\\Program Files\\Windows Media Player\\wmplayer.exe");
}
}
function OnEvent_Uninitialize(MessengerExit)
{
}
|