Shoutbox

help!: i want see my own popup - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: WLM Plus! Help (/forumdisplay.php?fid=12)
+----- Thread: help!: i want see my own popup (/showthread.php?tid=62917)

help!: i want see my own popup by ultrAlex1907 on 07-09-2006 at 06:30 PM

hi there im new,
i have wlm 8.0.0792 with wlm plus 4.0.235

my question is how i can see my own popup if i log in, sometimes i see and mostly not, how can i this activate this and see the popup every time.

i hope you understand me.

greetings.
ultrAlex1907 ;)


RE: help!: i want see my own popup by Chris4 on 07-09-2006 at 06:36 PM

You can add yourself to your contacts list...

However, you won't get a pop-up when you sign in, but will when you go offline then online.

.. Don't know if that helps or not, but that's all I know of.


RE: help!: i want see my own popup by ultrAlex1907 on 07-09-2006 at 06:41 PM

no i dont see it chris4, but thanks for your fast reply.


RE: help!: i want see my own popup by RaceProUK on 07-09-2006 at 08:33 PM

quote:
Originally posted by ultrAlex1907
my question is how i can see my own popup if i log in
Can you clarify what you mean exactly?
RE: RE: help!: i want see my own popup by ultrAlex1907 on 07-09-2006 at 08:37 PM

quote:
Originally posted by RaceProUK
quote:
Originally posted by ultrAlex1907
my question is how i can see my own popup if i log in
Can you clarify what you mean exactly?


look i add myself in my contact list but when i change my nickname i want see it how it looks in the popup, but  when i goes online, i dont see the popup.

i hope you, you understand me.
RE: help!: i want see my own popup by absorbation on 07-09-2006 at 08:40 PM

I am not fully sure what you are after. Nevertheless, I have made a tiny script to acheive what I think you are after.

code:
function OnEvent_Signin() {
MsgPlus.DisplayToast('Signed In', "Your have signed into messenger");
}

RE: help!: i want see my own popup by RaceProUK on 07-09-2006 at 08:58 PM

code:
function OnEvent_Signin() {
    MsgPlus.DisplayToast("Messenger Plus! Live", Messenger.MyName + "\nSigned in");
}
is actually what you want.
RE: help!: i want see my own popup by ultrAlex1907 on 07-09-2006 at 09:01 PM

no i want change the setting of windows live messenger, i think the settings are wrong.


RE: help!: i want see my own popup by RaceProUK on 07-10-2006 at 10:26 AM

If there was a way to change the WLM settings to get whjat you want, we'd have suggested it. As there isn't, the scripts given here are the next best thing.


RE: help!: i want see my own popup by markee on 07-10-2006 at 12:29 PM

code:
function OnEvent_Signin(){
  MsgPlus.DisplayToastContact("Messenger Plus! Live", Messenger.MyName, "Signed in");
}

This script will show you how your name looks with the formatting too.

code:
function OnEvent_MyNameChange(NewName){
  MsgPlus.DisplayToastContact("Messenger Plus! Live", NewName, "Changed Name");
}

This scipt will show you straight away after changing your name how it looks to you contacts including the formatting.

I hope these help you. :)

EDIT: RaceProUK is correct, the only way we can change this is with a scipt.  The advantage with using a scipt aswell is that it is easily adaptable to however you want it (eg formatted, unformatted, with different text, etc.), if microsoft were to do this for you then you woud have to put up with it how they wish for it to be for you.