/* 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 );
}
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.