What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Wanted] Keep personal status

[Wanted] Keep personal status
Author: Message:
PatrickKL
Junior Member
**


Posts: 30
Joined: Sep 2005
O.P. [Wanted] Keep personal status
hi @ all,
I have this problem since i have wireless lan, and I still don't know what to do...My internet disconnects several times a day(sometimes for a longer time), and sometimes after reconnecting, my personal status is still there, and sometimes not...and more often it's no more there :( I don't know if this could be done, but perhaps anyone could write a script like the "Remember Status" script which remembers the PERSONAL status...

that would be great :D
07-17-2006 01:04 PM
Profile E-Mail PM Find Quote Report
Squelettor
Junior Member
**

Avatar

Posts: 49
Joined: Jul 2006
RE: [Wanted] Keep personal status
It is not very difficult, if y have time... ^^
07-17-2006 01:07 PM
Profile PM Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: [Wanted] Keep personal status
With Personal Status, do you mean the msgplus! status messages or your Personal Message (psm)?

Because there is no way to restore the msgplus! status message, as the scripting interface has no access to the current msgplus! status message
[Image: 1-0.png]
             
07-17-2006 01:14 PM
Profile PM Web Find Quote Report
PatrickKL
Junior Member
**


Posts: 30
Joined: Sep 2005
O.P. RE: [Wanted] Keep personal status
I ment everything in the personal status, the tag in die name und the psm...but the tag in the name is most important...
07-17-2006 01:53 PM
Profile E-Mail PM Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: [Wanted] Keep personal status
If I were you, I'd actually try to solve the wireless issues first.
[Image: spartaafk.png]
07-17-2006 01:56 PM
Profile PM Web Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: [Wanted] Keep personal status
I did creat a script that restores your personal message, but I can't restore the personal status because the scripting interface has no access to that.

code:
function OnEvent_Signout(Email)
{
  try
  {
    WriteRegistry("psm", Messenger.MyPersonalMessage);
  }
  catch(err)
  {
    Debug.Trace("   WRITE REGISTRY FAILED");
  }
}

function OnEvent_Signin(Email)
{
  try
  {
    Messenger.MyPersonalMessage = ReadRegistry("psm");
  }
  catch(err)
  {
    Debug.Trace("   FAILED RESTORING PSM");
  }
}

function WriteRegistry(key, value)
{
  var Shell = new ActiveXObject("WScript.Shell");
  Shell.RegWrite(MsgPlus.ScriptRegPath + Messenger.MyEmail + "\\" + key, value);
}

function ReadRegistry(key)
{
  var Shell = new ActiveXObject("WScript.Shell");
  return Shell.RegRead(MsgPlus.ScriptRegPath + Messenger.MyEmail + "\\" + key);
}
[Image: 1-0.png]
             
07-17-2006 01:58 PM
Profile PM Web Find Quote Report
PatrickKL
Junior Member
**


Posts: 30
Joined: Sep 2005
O.P. RE: [Wanted] Keep personal status
thanks :):)

@RaceProUK:
I tried to solve the problems already :^)
07-17-2006 02:21 PM
Profile E-Mail PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [Wanted] Keep personal status
The best you can do in concearn to your status is to save your messenger status.. For that, a script already exists, see:

http://www.msgpluslive.net/scripts/browse/index.php?act=view&id=24
.-= A 'frrrrrrrituurrr' for Wacky =-.
07-17-2006 04:32 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