What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Please Help ME..!!

Please Help ME..!!
Author: Message:
real_cute_boy
New Member
*


Posts: 10
Joined: Jul 2007
O.P. Please Help ME..!!
Hi people,
sorry if I'm going to bore you.. But i'm going to be crazy..

I want to use Enhancher scripts to permit my msn , to have on the tooltip area , near the icon of msn , my online list contacts.

So I try to modify , the code.. and as you can see i do this , exactly on the Preferences Area on the Save Settings:

******


var Contacts = Messenger.MyContacts;
var e = new Enumerator(Contacts);
var i;
var c;
i = 0;
var txxt  = new Array();
var tx;
var tx2;
for(; !e.atEnd(); e.moveNext())
     {
     var Contact = e.item();         
    if(Contact.Status != "1")
    {
    txxt[ i ] = Contact.Name;
    i = i + 1;
    }             
    }
     c = i;
     c = 0;
     Shell.RegWrite(registry + "NotificationAreaTooltip","", 'REG_SZ');
     while(c<i)
     {
      tx = txxt[ c ]
         c = c + 1;
      tx2 = Shell.RegRead(registry + "NotificationAreaTooltip") + tx + "\n";
        Shell.RegWrite(registry + "NotificationAreaTooltip", tx2 , 'REG_SZ');
    }
        Debug.Trace(Shell.RegRead(registry + "NotificationAreaTooltip"));


Well , If try to show the debug windows.. I notice that with
the line
        Debug.Trace(Shell.RegRead(registry + "NotificationAreaTooltip"));
I can see al the contacts , so it works.. But why at last, it doesn't write anything on the registry and aboveall in the tooltip doesn't appear nothing??

Can anyone help me..???

Thanks..

Ilario
07-24-2007 10:07 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Please Help ME..!! - by real_cute_boy on 07-24-2007 at 10:07 AM
RE: Please Help ME..!! - by Deco on 07-24-2007 at 02:33 PM
RE: Please Help ME..!! - by real_cute_boy on 07-25-2007 at 07:13 AM
RE: Please Help ME..!! - by -dt- on 07-25-2007 at 07:27 AM


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