Fox-NL
New Member
Posts: 7
35 / / –
Joined: Oct 2005
|
RE: [REQUEST] Display Picture Change with Status script
code: function OnEvent_MyStatusChange(Stat) {
if(Stat == 2) {
//Appear Offline - Set the DP Path here
Messenger.MyDisplayPicture = "";
} else if(Stat == 3) {
//Online - Set the DP Path here
Messenger.MyDisplayPicture = "";
} else if(Stat == 4) {
//Busy - Set the DP Path here
Messenger.MyDisplayPicture = "";
} else if(Stat == 5) {
//Be Right Back - Set the DP Path here
Messenger.MyDisplayPicture = "";
} else if(Stat == 6) {
//Idle - Set the DP Path here
Messenger.MyDisplayPicture = "";
} else if(Stat == 7) {
//Away - Set the DP Path here
Messenger.MyDisplayPicture = "";
} else if(Stat == 8) {
//In a Call - Set the DP Path here
Messenger.MyDisplayPicture = "";
} else if(Stat == 9) {
//Out to Lunch - Set the DP Path here
Messenger.MyDisplayPicture = "";
}
}
Try something like that
|
|