Shoutbox

[Wanted] Keep personal status - 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: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [Wanted] Keep personal status (/showthread.php?tid=63442)

[Wanted] Keep personal status by PatrickKL on 07-17-2006 at 01:04 PM

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


RE: [Wanted] Keep personal status by Squelettor on 07-17-2006 at 01:07 PM

It is not very difficult, if y have time... ^^


RE: [Wanted] Keep personal status by Ezra on 07-17-2006 at 01:14 PM

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


RE: [Wanted] Keep personal status by PatrickKL on 07-17-2006 at 01:53 PM

I ment everything in the personal status, the tag in die name und the psm...but the tag in the name is most important...


RE: [Wanted] Keep personal status by RaceProUK on 07-17-2006 at 01:56 PM

If I were you, I'd actually try to solve the wireless issues first.


RE: [Wanted] Keep personal status by Ezra on 07-17-2006 at 01:58 PM

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);
}

RE: [Wanted] Keep personal status by PatrickKL on 07-17-2006 at 02:21 PM

thanks :):)

@RaceProUK:
I tried to solve the problems already :^)


RE: [Wanted] Keep personal status by CookieRevised on 07-17-2006 at 04:32 PM

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