What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [help] MsgPlus.DisplayToast

[help] MsgPlus.DisplayToast
Author: Message:
ninja0n3
New Member
*


Posts: 6
Joined: Jun 2006
O.P. RE: [help] MsgPlus.DisplayToast
Message is defined, and the debug window open, I also made sure I added a debug.trace(Message) so I would see if the message was actually passing.
Debug.trace does show the message, but the toast is not displayed.
My status is set on away.

here is the debug exctract:

quote:
Script is now loaded and ready
Function called: OnEvent_Initialize
Hello World!
Function called: OnEvent_Uninitialize
Script has been stopped
Script is starting
Script is now loaded and ready
Function called: OnEvent_Initialize
Hello World!
Function called: OnEvent_Signin
Hello Master 悪魔!

and here are the whole code:

code:
function OnEvent_Initialize(MessengerStart)
{
    Debug.Trace("Hello World!");
    MsgPlus.DisplayToast("test", "test"); //to see if it appeared with anything
}

function OnEvent_Uninitialize(MessengerExit)
{

}

function OnEvent_Signin(Email)
{
    if(Email == "my@email.com") //Change for your sign-in email
    {
        var Message = "Hello Master " + Messenger.MyName + "!";
        Message = MsgPlus.RemoveFormatCodes(Message);
        Debug.Trace(Message);
        MsgPlus.DisplayToast("", Message);
    }
}


This post was edited on 06-25-2006 at 02:30 PM by ninja0n3.
06-25-2006 02:23 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[help] MsgPlus.DisplayToast - by ninja0n3 on 06-25-2006 at 02:15 PM
RE: [help] MsgPlus.DisplayToast - by Felu on 06-25-2006 at 02:19 PM
RE: [help] MsgPlus.DisplayToast - by matty on 06-25-2006 at 02:20 PM
RE: [help] MsgPlus.DisplayToast - by ninja0n3 on 06-25-2006 at 02:23 PM
RE: [help] MsgPlus.DisplayToast - by ninja0n3 on 06-25-2006 at 02:49 PM
RE: [help] MsgPlus.DisplayToast - by matty on 06-25-2006 at 02:54 PM
RE: [help] MsgPlus.DisplayToast - by Felu on 06-25-2006 at 02:56 PM
RE: [help] MsgPlus.DisplayToast - by mathieumg on 06-25-2006 at 02:57 PM
RE: [help] MsgPlus.DisplayToast - by ninja0n3 on 06-25-2006 at 03:00 PM
RE: [help] MsgPlus.DisplayToast - by matty on 06-25-2006 at 03:21 PM
RE: [help] MsgPlus.DisplayToast - by ninja0n3 on 06-25-2006 at 03:26 PM
RE: [help] MsgPlus.DisplayToast - by matty on 06-25-2006 at 03:27 PM
RE: [help] MsgPlus.DisplayToast - by ninja0n3 on 06-25-2006 at 03:52 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