What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] Facebook Status as PSM v1.31

Pages: (9): « First « 3 4 5 6 [ 7 ] 8 9 » Last »
[Release] Facebook Status as PSM v1.31
Author: Message:
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
O.P. RE: RE: [Release] Facebook Status as PSM v1.30
quote:
Originally posted by P4R4D0x
How do you add stuff after the status update?
Future feature?

Can you give me an example of what you mean?  Like what you'd like to add after the status update?
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5223 days, 14 hours, 8 minutes, 22 seconds ago
03-21-2009 03:30 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Release] Facebook Status as PSM v1.30
To fix the issues with the script not loading settings properly try this

Javascript code:
function OnEvent_Initialize() {
    if (Messenger.MyStatus < STATUS_INVISIBLE) return false;
    fCheckReg(Messenger.MyEmail);
    if (sTimer < 1) {
        sTimer = 1;
    }
    sTimer2 = sTimer * 60000
    MsgPlus.AddTimer('update', sTimer2);
}
 
function OnEvent_SigninReady(sEmail) {
    OnEvent_Initialize();
}


You had the check in the wrong place if the user wasn't signed in. If the user isn't signed in Messenger.MyEmail will be null and cause the script to fail.

This post was edited on 03-21-2009 at 09:39 PM by matty.
03-21-2009 09:37 PM
Profile E-Mail PM Find Quote Report
KiwiBloke
New Member
*


Posts: 3
Joined: Mar 2009
RE: RE: [Release] Facebook Status as PSM v1.30
quote:
Originally posted by matty
To fix the issues with the script not loading settings properly try this

<snip>

You had the check in the wrong place if the user wasn't signed in. If the user isn't signed in Messenger.MyEmail will be null and cause the script to fail.

Hey, that seems to be working fine for me now! The settings are retained after I restart WLM. Thanks! :)

Cheers,
Jeremy
03-21-2009 10:02 PM
Profile PM Find Quote Report
P4R4D0x
Junior Member
**


Posts: 71
Joined: Mar 2006
RE: [Release] Facebook Status as PSM v1.30
quote:
Originally posted by djdannyp
quote:
Originally posted by P4R4D0x
How do you add stuff after the status update?
Future feature?

Can you give me an example of what you mean?  Like what you'd like to add after the status update?
| http://themoderndayriffraff.blogspot.com/ |
Is that what you meant?

This post was edited on 03-23-2009 at 12:40 PM by P4R4D0x.
03-23-2009 03:49 AM
Profile E-Mail PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
O.P. RE: RE: [Release] Facebook Status as PSM v1.30
quote:
Originally posted by matty
To fix the issues with the script not loading settings properly try this

Javascript code:
function OnEvent_Initialize() {
    if (Messenger.MyStatus < STATUS_INVISIBLE) return false;
    fCheckReg(Messenger.MyEmail);
    if (sTimer < 1) {
        sTimer = 1;
    }
    sTimer2 = sTimer * 60000
    MsgPlus.AddTimer('update', sTimer2);
}
 
function OnEvent_SigninReady(sEmail) {
    OnEvent_Initialize();
}


You had the check in the wrong place if the user wasn't signed in. If the user isn't signed in Messenger.MyEmail will be null and cause the script to fail.

awesome, i've added that to the script now (as well as my auto status one which was having the same problems)...i'll give it some tests over the next few days then submit new versions
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5223 days, 14 hours, 8 minutes, 22 seconds ago
03-23-2009 08:13 PM
Profile E-Mail PM Find Quote Report
ManicIce
New Member
*


Posts: 1
Joined: Mar 2009
RE: [Release] Facebook Status as PSM v1.30
Seems like it dont remember my settings when i log on to messenger after shutdown. 
03-24-2009 02:59 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Release] Facebook Status as PSM v1.30
quote:
Originally posted by ManicIce
Seems like it dont remember my settings when i log on to messenger after shutdown.
That will be fixed in the next release as I pointed out the fix for it.
03-24-2009 04:47 PM
Profile E-Mail PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
O.P. RE: [Release] Facebook Status as PSM v1.30
The fix has been tested and verified and the new version has been submitted to the database.

Either check back here in a few days or use /checkupdates in a conversation to see if the new version is online
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5223 days, 14 hours, 8 minutes, 22 seconds ago
03-28-2009 10:32 AM
Profile E-Mail PM Find Quote Report
P4R4D0x
Junior Member
**


Posts: 71
Joined: Mar 2006
RE: [Release] Facebook Status as PSM v1.30
Can anyone help me with how I would go about putting text after the status as well as before, please?

This post was edited on 03-30-2009 at 12:13 AM by P4R4D0x.
03-30-2009 12:11 AM
Profile E-Mail PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
O.P. RE: RE: [Release] Facebook Status as PSM v1.30
quote:
Originally posted by P4R4D0x
Can anyone help me with how I would go about putting text after the status as well as before, please?

This isn't yet available as an option, however if you edit the following line of code you can:

Javascript code:
Messenger.MyPersonalMessage = sPrefix + " " + newPsm;


It's line 124, change it to something like:

Javascript code:
Messenger.MyPersonalMessage = sPrefix + " " + newPsm + "This is extra text";


Also, version 1.31 is now live on the database with a fix for the problem where settings weren't being remembered properly after exiting Messenger
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5223 days, 14 hours, 8 minutes, 22 seconds ago
03-30-2009 08:35 PM
Profile E-Mail PM Find Quote Report
Pages: (9): « First « 3 4 5 6 [ 7 ] 8 9 » Last »
« 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