What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Suggestion: Personal Status with Display Picture Change

Suggestion: Personal Status with Display Picture Change
Author: Message:
ryxdp
Senior Member
****


Posts: 804
Reputation: 16
29 / Male / Flag
Joined: Jun 2006
RE: Suggestion: Personal Status with Display Picture Change
This can be easily done with a script:

JScript code:
var originaldp;
var dpdir=MsgPlus.ScriptFilesPath; //You can change this to your own directory
function OnEvent_EnterPersonalizedStatus(status,tag,psm,auto){
    switch(tag){
        case 'Eating': //Change DPs for each PStatus
            Messenger.MyDisplayPicture=dpdir+'\\eatingdp.png';
            break;
        case 'Sleeping':
            Messenger.MyDisplayPicture=dpdir+'\\sleepingdp.png';
            break;
        case 'Working':
            Messenger.MyDisplayPicture=dpdir+'\\workingdp.png';
            break;
    }
}
function OnEvent_LeavePersonalizedStatus(){ //Reset DP when PStatus is turned off
    Messenger.MyDisplayPicture=originaldp;
}
function OnEvent_SignIn(){ //Set the original DP
    originaldp=Messenger.MyDisplayPicture;
}


There's probably a more efficient way to do this using scripting, but here's my contribution anyway :P

To add more statuses you just need to copy the three lines from case to break.
05-15-2009 07:57 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Suggestion: Personal Status with Display Picture Change - by DevlishZephyr on 05-14-2009 at 02:49 PM
RE: Suggestion: Personal Status with Display Picture Change - by ryxdp on 05-15-2009 at 07:57 AM


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