What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Won't display toasts

Won't display toasts
Author: Message:
Addenorw
New Member
*


Posts: 5
Joined: Nov 2007
O.P. Won't display toasts
MSN won't display my toasts in my script.

code:
function OnEvent_Initialize(MessengerStart)
{
      Debug.Trace("Hello World!");
}

function OnEvent_Signin(Email)
{
if (email == "andvibeto@msn.com")
{
   var Message = "Hello Master " + Messenger.MyName + "!";
   Message = MsgPlus.RemoveFormatCodes(Message);
   MsgPlus.DisplayToast("", Message);

}

function OnEvent_ContactSignin(Email)
{
var Message = "Latest INTEL:" + Messenger.ContactName + "has just signed in";
Message = MsgPlus.RemoveFormatCodes(Message);
MsgPlus.DisplayToastContact("", CtcName, message);
}

function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind)
{
var Message = Messenger.ContactName + "vil snakke, plage deg eller bare si hallo. Your choice";
Message = MsgPlus.RemoveFormatCodes(Message);
MsgPlus.DisplayToast("", CtcName, message);
}

function OnEvent_Signout(Email)
{
if (email == "andvibeto@msn.com")
{ var Message = "Until next time Master" + Messenger.MyName + ", have a good time!";
   Message = MsgPlus.RemoveFormatCodes(Message);
   MsgPlus.DisplayToast("", Message);
}
}

function OnEvent_Uninitialize(MessengerExit)
{
     Debug.Trace ("Goodbye World!");
}


Do anyone see what is wrong?
10-06-2008 05:08 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Won't display toasts - by Addenorw on 10-06-2008 at 05:08 PM
RE: Won't display toasts - by Spunky on 10-06-2008 at 05:22 PM
RE: Won't display toasts - by Addenorw on 10-06-2008 at 05:27 PM
RE: Won't display toasts - by roflmao456 on 10-06-2008 at 07:54 PM
RE: Won't display toasts - by matty on 10-06-2008 at 08:20 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On