[Release] Facebook Status as PSM v1.31 |
Author: |
Message: |
djdannyp
Elite Member
Danny <3 Sarah
Posts: 3546 Reputation: 31
38 / /
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?
|
|
03-21-2009 03:30 PM |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
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 |
|
|
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 |
|
|
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 |
|
|
djdannyp
Elite Member
Danny <3 Sarah
Posts: 3546 Reputation: 31
38 / /
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
|
|
03-23-2009 08:13 PM |
|
|
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 |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
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 |
|
|
djdannyp
Elite Member
Danny <3 Sarah
Posts: 3546 Reputation: 31
38 / /
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
|
|
03-28-2009 10:32 AM |
|
|
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 |
|
|
djdannyp
Elite Member
Danny <3 Sarah
Posts: 3546 Reputation: 31
38 / /
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
|
|
03-30-2009 08:35 PM |
|
|
Pages: (9):
« First
«
3
4
5
6
[ 7 ]
8
9
»
Last »
|
|