What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » DPs in signed in/out toasts?

Pages: (2): « First [ 1 ] 2 » Last »
DPs in signed in/out toasts?
Author: Message:
Shiny Rabbit
Full Member
***

Avatar
oohhh shiny

Posts: 296
Reputation: 2
– / Male / Flag
Joined: Jun 2007
O.P. DPs in signed in/out toasts?
is there a way i can see my contact's DPs in messenger plus sign in/out toasts?
[Image: 202-3.png][Image: shinyhachunesig.png]



02-23-2008 05:22 PM
Profile E-Mail PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: DPs in signed in/out toasts?
MsgPlus::DisplayToastContact

You'd have to disable Plus' notifications and make your own small script with the signin and/or signout events

This post was edited on 02-23-2008 at 05:35 PM by Spunky.
<Eljay> "Problems encountered: shit blew up" :zippy:
02-23-2008 05:35 PM
Profile PM Find Quote Report
Shiny Rabbit
Full Member
***

Avatar
oohhh shiny

Posts: 296
Reputation: 2
– / Male / Flag
Joined: Jun 2007
O.P. RE: DPs in signed in/out toasts?
i know nothing about making scripts =\
[Image: 202-3.png][Image: shinyhachunesig.png]



02-23-2008 05:39 PM
Profile E-Mail PM Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
RE: DPs in signed in/out toasts?
Messenger shows the contacts dp on its own when they sign in . You don't need the plus toast for that. But when they sign out, you need a script to display the dp in the toast.
[Image: logo1nu1.png]
02-23-2008 05:44 PM
Profile PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: DPs in signed in/out toasts?
code:
function OnEvent_ContactSignout(Email){
    var Contacts = Messenger.MyContacts;
    var e = new Enumerator(Contacts);
    for(; !e.atEnd(); e.moveNext()) {
    var Contact = e.item();
         if(Contact.Email===Email){
            MsgPlus.DisplayToastContact("Contact Signed Out", MsgPlus.RemoveFormatCodes(Contact.Name), "signed out");
        }
     }
}

That should do it :p
<Eljay> "Problems encountered: shit blew up" :zippy:
02-23-2008 06:06 PM
Profile PM Find Quote Report
Mnjul
forum super mod
******

Avatar
plz wub me

Posts: 5396
Reputation: 58
– / Other / Flag
Joined: Nov 2002
Status: Away
RE: DPs in signed in/out toasts?
quote:
Originally posted by SpunkyLoveMuff
code:
function OnEvent_ContactSignout(Email){
    var Contacts = Messenger.MyContacts;
    var e = new Enumerator(Contacts);
    for(; !e.atEnd(); e.moveNext()) {
    var Contact = e.item();
         if(Contact.Email===Email){
            MsgPlus.DisplayToastContact("Contact Signed Out", MsgPlus.RemoveFormatCodes(Contact.Name), "signed out");
        }
     }
}


How is that script function going to add a display picture to the toast as requested by Shiny Rabbit? It's not showing any display pictures in the toasts for me.

This post was edited on 02-23-2008 at 06:21 PM by Mnjul.
02-23-2008 06:20 PM
Profile PM Web Find Quote Report
pollolibredegrasa
Full Member
***

Avatar
formerly fatfreechicken

Posts: 483
Reputation: 34
35 / Male / Flag
Joined: May 2005
RE: RE: DPs in signed in/out toasts?
quote:
Originally posted by SpunkyLoveMuff
code:
function OnEvent_ContactSignout(Email){
    var Contacts = Messenger.MyContacts;
    var e = new Enumerator(Contacts);
    for(; !e.atEnd(); e.moveNext()) {
    var Contact = e.item();
         if(Contact.Email===Email){
            MsgPlus.DisplayToastContact("Contact Signed Out", MsgPlus.RemoveFormatCodes(Contact.Name), "signed out");
        }
     }
}

That should do it :p

Why not use the GetContact function? :P
code:
function OnEvent_ContactSignout(Email){
    var Contact = Messenger.MyContacts.GetContact(Email);
    MsgPlus.DisplayToastContact("Contact Signed Out", MsgPlus.RemoveFormatCodes(Contact.Name), "signed out");
}

However, this doesn't display the DP in the toast either.
;p

[Image: chickennana.gif] Vaccy is my thin twin! [Image: chickennana.gif]
02-23-2008 06:23 PM
Profile PM Find Quote Report
Shiny Rabbit
Full Member
***

Avatar
oohhh shiny

Posts: 296
Reputation: 2
– / Male / Flag
Joined: Jun 2007
O.P. RE: DPs in signed in/out toasts?
blarrrr, i'm confuddled =S
[Image: 202-3.png][Image: shinyhachunesig.png]



02-23-2008 07:38 PM
Profile E-Mail PM Find Quote Report
Mnjul
forum super mod
******

Avatar
plz wub me

Posts: 5396
Reputation: 58
– / Other / Flag
Joined: Nov 2002
Status: Away
RE: DPs in signed in/out toasts?
I think there's no easy way to add a dp into a plus! toast :p
02-23-2008 08:01 PM
Profile PM Web Find Quote Report
Shiny Rabbit
Full Member
***

Avatar
oohhh shiny

Posts: 296
Reputation: 2
– / Male / Flag
Joined: Jun 2007
O.P. RE: DPs in signed in/out toasts?
thats a kick in the balls
[Image: 202-3.png][Image: shinyhachunesig.png]



02-23-2008 09:34 PM
Profile E-Mail PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


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