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:
DevlishZephyr
New Member
*

Avatar

Posts: 1
47 / Male / Flag
Joined: May 2009
O.P. Suggestion: Personal Status with Display Picture Change
I use the personalised statusses alot, and for exemple I have statusses like:

Eating
Sleeping
Working
etc ...

What would be nice is that you could automate the change of your display picture as well, so that it changes your display picture as well when you switch to a personalised status.  For exemple, I have a sleeping avatar, an eating avatar, ... :P

Thanks for letting me know how to achieve this if allready possible.
05-14-2009 02:49 PM
Profile E-Mail PM Web Find Quote Report
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 »


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