O.P. [REQUEST] Display Picture Change with Status script
I would like a Display Picture Status changer so when I change my status it will automatically change my display picture.
I was using dpstatus.exe but it doesn't recognise any of my Personalised Statuses in Plus! Live. The other thing is it runs as it's on application in my system tray which I don't particularly like.
The views I present are that of my own and NOT of any organisation I may belong to.
RE: [REQUEST] Display Picture Change with Status script
umm are there any function that changes display picture ?
there is something like that but i dont know how to use it :
The Messenger::MyDisplayPicture property returns the path to the display picture file used by the current Messenger user. It can also be used to change the display picture of the current user based on an existing file.
This post was edited on 06-25-2006 at 02:21 PM by nuwanda.
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 = "";
}
}
RE: [REQUEST] Display Picture Change with Status script
I wrote something like that , it changes display picture after a few seconds..
function OnEvent_Signin(mail)
{
var Message = "Your picture will be changed!";
MsgPlus.DisplayToast("",Message);
MsgPlus.AddTimer("resim",50000);
}
function OnEvent_Timer(timerid)
{
if(timerid=="resim")
{
Messenger.MyDisplayPicture="C:/dsc.jpeg";
}
}
but it gives error ;
Function called: OnEvent_Signin
Function called: OnEvent_Timer
Error: Geçersiz yordam çağrısı veya değişken. (something like unaccepted variable or function in english)
Line: 12. Code: -2146828283.
Function OnEvent_Timer returned an error. Code: -2147352567
RE: [REQUEST] Display Picture Change with Status script
I just used that Fox-NL wrote..but it still gives same error ;
Function called: OnEvent_MyStatusChange
Error: Unaccepted function or variable.
Line: 3. Code: -2146828283.
Function OnEvent_MyStatusChange returned an error. Code: -214735