What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Poligami for WLM 8.5 Beta

Poligami for WLM 8.5 Beta
Author: Message:
AngelDevil
Full Member
***

Avatar
MsgPlus! Script Developer

Posts: 175
34 / Male / Flag
Joined: Jun 2007
O.P. Poligami for WLM 8.5 Beta
I'm using Windows Live Messenger 8.5 beta. In the file Poligami.js of Poligami script:

function messengerSignIn() {
    Debug.trace( "MessengerSignIn" );
    var hklm = -2147483646;
    // if( path = GetStringValue( hklm, mKey, "InstallationDirectory" ) )
    // path = path.replace( /\\/g, "\\\\" );
   
                path = "C:\\Program Files\\Windows Live\\Messenger\\";
    var objShell = new ActiveXObject( "Shell.Application" );
    objShell.ShellExecute( path + "msnmsgr.exe", "", "", "open", 1 );
    Messenger.Autosignin();
}

The if that assigned the path at "path" var request the content of a registry key, SOFTWARE\\Microsoft\\MSNMessenger\\, but this not support Windows Live Messenger 8.5, so users need to add manually the path, like me. But which is the correct registry key?
http://www.amicogeek.it - Technology blog!
06-30-2007 04:08 PM
Profile PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Poligami for WLM 8.5 Beta
The new location for the "InstallationDirectory" setting is:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Live\Messenger

But, do not change the global variable mkey in the script!.
That variable is used for more things than just to find the "InstallationDirectory" registry setting. And many things are still located in the old registry map (like the passport settings).

So if you wanna change it, you must only change the following line:
if (path = GetStringValue(hklm, mKey, "InstallationDirectory"))
to:
if (path = GetStringValue(hklm, "SOFTWARE\\Microsoft\\Windows Live\\Messenger", "InstallationDirectory"))


This post was edited on 06-30-2007 at 06:15 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
06-30-2007 06:07 PM
Profile PM Find Quote Report
AngelDevil
Full Member
***

Avatar
MsgPlus! Script Developer

Posts: 175
34 / Male / Flag
Joined: Jun 2007
O.P. RE: Poligami for WLM 8.5 Beta
Ok thanks! :D
http://www.amicogeek.it - Technology blog!
06-30-2007 06:16 PM
Profile PM Find Quote Report
« 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