quote:
Originally posted by roflmao456
Matty, what's the use of the INVISIBLE/OFFLINE pictures?
If you appear offline you can have your dp say you are offline?
quote:
Originally posted by roflmao456
Here's the script I said I would create. Access the configuration window through the menu.
js code:
function OnEvent_Initialize(MessengerStart){
if(!MessengerStart)
OnEvent_SigninReady();
}
Never use the bMessengerStart parameter it isnt what you think it is. bMessengerStart only describes how the script was started not if the user is signed in. Instead use this:
js code:
function OnEvent_Initialize ( ) {
if ( Messenger.MyStatus < STATUS_INVISIBLE ) return false;
Debug.Trace('user signed in');
}
function OnEvent_SigninReady ( ) {
OnEvent_Initialize ( );
}