E-mail in Popup and "(255,0,0)?"

Archive of all threads restored from the backup after the forum hijack
Locked
t0maz
Posts: 9
Joined: Thu Mar 20, 2003 8:57 am

E-mail in Popup and "(255,0,0)?"

Post by t0maz »

Hello there,

Sometimes I want to see what the e-mail address is of a contact, bu just can's because his msn name is too long. This is not a question, but merely an advice. I solved this by doing this:
In the msn.mrc file on about line 364 is the menu (menu @Messenger {...) so I added some shit so it now looks like this:

Code: Select all

menu @Messenger {
  $left($gettok($1-,-1,60),$calc($len($gettok($1-,-1,60)) - 1)): {
    set %msn.clickemail $gettok($1-,-1,60)
    echo -s ::: $gettok($1-,-1,60) :::
    set %msn.clickemail $left(%msn.clickemail,$calc($len(%msn.clickemail)-1))
    sockclose chat. $+ %msn.clickemail
    sendmsn XFR %msn.main SB
  }
  -
  Change Status
The "menu @..." and "Change Status" were already there. This adds a new menu-item at the top of the right-click menu wich displays the e-mail address. When you click it it will open a conversation dialog (that part was just taken from the DCLICK event...).

Now I also have a question. Some contact have something like "(255,0,0)" in their names. Is that some kind of bug or just a MSN messenger extention (like MsgPlus) of some kind?

~ t0maz
struzball

Post by struzball »

thanks for that
Guest

Re: E-mail in Popup and "(255,0,0)?"

Post by Guest »

t0maz wrote: Now I also have a question. Some contact have something like "(255,0,0)" in their names. Is that some kind of bug or just a MSN messenger extention (like MsgPlus) of some kind?
It is from msgplus ;)
Locked