Shoutbox

msn looks alpha - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: msn looks alpha (/showthread.php?tid=97199)

msn looks alpha by punto on 03-23-2011 at 11:36 PM

windows 7 has updated to me the wlm to essential 2011 package or something like that.
and now i see the contacts brighten than it was earlier.
this is the way i see it:
[Image: fbe9a4db66c14948a8b69660c1386e2a.png]

how can i fix this crap?
thanks


RE: msn looks alpha by Mike on 03-24-2011 at 12:30 AM

That usually means that you're appearing offline to those persons (or blocked them as you would say in an older WLM version).
Try right-clicking a contact and go to "Appear online to this person".


RE: RE: msn looks alpha by punto on 03-24-2011 at 09:40 AM

quote:
Originally posted by Mike
That usually means that you're appearing offline to those persons (or blocked them as you would say in an older WLM version).
Try right-clicking a contact and go to "Appear online to this person".
yea that was it i suppose.. thanks dudes
RE: msn looks alpha by Arcticwolfx on 03-24-2011 at 10:09 AM

quote:
Originally posted by Mike
That usually means that you're appearing offline to those persons (or blocked them as you would say in an older WLM version).
Try right-clicking a contact and go to "Appear online to this person".

Now I've learned that you can "appear offline" to certain categories such as "Favorites" as a whole. I've never seen this because I sort contacts by online/offline status. I do think it's sort of odd that you can't "appear offline" to a default category like "Other Contacts."

Thanks!
RE: msn looks alpha by Oxy on 03-24-2011 at 01:56 PM

On a (vaguely) Similar topic, once you 'appear online to all friend', it actually works to unblock contacts (as i unpleasantly found out). Is there a feature that gives the effect of blocking/'appearing offline' permanently to a contact that doesnt get overridden by the 'appear online to all' feature?

Or perhaps, is it script-able?


RE: msn looks alpha by Spunky on 03-24-2011 at 03:25 PM

quote:
Originally posted by Oxy
Or perhaps, is it script-able?

I think blocking using the script engine produces the same result as the new appearing offline in 2011. It would then be possible to check if "x" is unblocked, block them.

I'm hoping that appearing offline to someone will trigger a status change event. If so, it'll be a lot resource intensive else it'll need a timer, or to trigger on something else. I'll take a look and get back to you on it.

EDIT:

Unfortunately, the contact will probably see you flicker online for a second due to the nature of the ContactUnblocked event. Just click the toast to unblock them permanently, don't click it and they'll just be blocked again

Javascript code:
var safe = new Array()
 
function OnEvent_ContactUnblocked(email){
    var found = false;
    for(var s in safe){
        if(s == email) found = true;
    }
    if(found == false){
        Messenger.MyContacts.GetContact(email).Blocked = true;
        MsgPlus.DisplayToast("reBLOCK", "Click here to unblock" + email,"","unblock",email);
    }else{
        delete safe[email];
    }  
}
 
function unblock(e){
    safe[e] = e;
    Messenger.MyContacts.GetContact(e).Blocked = false;
}



RE: msn looks alpha by foaly on 03-24-2011 at 04:07 PM

quote:
Originally posted by Oxy
EDIT:

Unfortunately, the contact will probably see you flicker online for a second due to the nature of the ContactUnblocked event.


I guess the only way to prevent that is to use the block all / unblock all functions from a script...