What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] DP by status

Pages: (2): « First [ 1 ] 2 » Last »
[Request] DP by status
Author: Message:
CO_ol
New Member
*

Avatar

Posts: 11
Joined: Jul 2009
O.P. [Request] DP by status
Hi!

I wonder if it's possible to make the DP change when I select an other status?
Like this:

Online - Green pic
Busy - Red pic
Away - Orange pic

I will love if anyone could make this? I select a pic from my computer for each of my status.
Please?

//CO_ol
07-07-2009 09:55 PM
Profile E-Mail PM Find Quote Report
warmth
Veteran Member
*****

Avatar
Electronic Engineer

Posts: 1730
Reputation: 26
39 / Male / Flag
Joined: Jul 2003
RE: [Request] DP by status
There are already scripts that do that... search in data base :P
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
07-07-2009 10:06 PM
Profile PM Web Find Quote Report
CO_ol
New Member
*

Avatar

Posts: 11
Joined: Jul 2009
O.P. RE: [Request] DP by status
I can't change the pics in it! x/
07-07-2009 10:45 PM
Profile E-Mail PM Find Quote Report
ryxdp
Senior Member
****


Posts: 804
Reputation: 16
29 / Male / Flag
Joined: Jun 2006
RE: RE: [Request] DP by status
quote:
Originally posted by CO_ol
I can't change the pics in it! x/

You should be able to change the images if you go to the script's folder and look for them in there, eg.:

C:\Program Files\Messenger Plus! Live\Scripts\<scriptnamehere>
07-08-2009 08:41 AM
Profile PM Find Quote Report
CO_ol
New Member
*

Avatar

Posts: 11
Joined: Jul 2009
O.P. RE: [Request] DP by status
I know but there's only jpg files and when I edit the script and set other images it doesn't listen! xD It still choose the jpg's
07-08-2009 09:50 AM
Profile E-Mail PM Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
RE: [Request] DP by status
I will create the script for you.
will edit this post to attach script when finished
[quote]
Ultimatess6
: What a noob mod
07-09-2009 05:01 AM
Profile PM Web Find Quote Report
CO_ol
New Member
*

Avatar

Posts: 11
Joined: Jul 2009
O.P. RE: [Request] DP by status
Thank you! :)
07-09-2009 02:48 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Request] DP by status
Javascript code:
/* status2dp
written by matty 2009 */

 
/* instructions:
put the name of the picture you want to correspond for each status
put the picture itself in the scripts folder
*/

var oStatus = {
            STATUS_INVISIBLE : 'offline.png',
            STATUS_ONLINE : 'online.png',
            STATUS_BUSY : 'busy.png',
            STATUS_BRB : 'away.png',
            STATUS_IDLE : 'away.png',
            STATUS_AWAY : 'away.png',
            STATUS_INCALL : 'busy.png',
            STATUS_OUTLUNCH : 'away.png'
        };
 
function OnEvent_Initialize ( ) {
    if ( Messenger.MyStatus < STATUS_INVISIBLE ) return false;
    OnEvent_MyStatusChanged ( Messenger.MyStatus );
}
 
function OnEvent_SigninReady ( ) {
    OnEvent_MyStatusChanged ( Messenger.MyStatus );
}
 
function OnEvent_MyStatusChanged ( nNewStatus ) {
    Messenger.MyDisplayPicture = MsgPlus.ScriptFilesPath+'\\'+oStatus [ nNewStatus ];
}


This post was edited on 07-09-2009 at 05:22 PM by matty.
07-09-2009 04:08 PM
Profile E-Mail PM Find Quote Report
CO_ol
New Member
*

Avatar

Posts: 11
Joined: Jul 2009
O.P. RE: [Request] DP by status
That doesn't work :S
How do you set your images? (Copy/Paste)
07-09-2009 05:15 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Request] DP by status
Look at the updated post for more information.
Then in the same folder that the script would be in (usually C:\Program Files\Messenger Plus! Live\Scripts\Script) you put the images in it.
07-09-2009 05:23 PM
Profile E-Mail PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » 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