What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [request] Option to turn on/off others Userpics.

[request] Option to turn on/off others Userpics.
Author: Message:
Tigerking
Junior Member
**


Posts: 18
Joined: Nov 2005
O.P. [request] Option to turn on/off others Userpics.
Hi all, i have a request.
Normaly userpics from others is turned off, i can only see my own. ( because i dont like it if someone uses pics with tits and asses, and than my mum comes in my room :D )
But now me and some friends got some animated stuff and to see them i have allways to turn on userpics. I have disabled with a patch to show userpics in sign in window, but i still want to turn off and on the userpics from others quicklier. Is there a possiblity with a script ?
Thanks.
06-17-2007 10:50 AM
Profile E-Mail PM Find Quote Report
scott2010_h
Full Member
***

Avatar

Posts: 187
Reputation: 10
32 / Male / Flag
Joined: Dec 2005
Status: Away
RE: [request] Option to turn on/off others Userpics.
Use the arrow on the side of the convo window by the display picture:
http://img20.imageshack.us/my.php?image=hide1cs7.jpg

This post was edited on 06-18-2007 at 10:39 PM by scott2010_h.
06-18-2007 10:29 PM
Profile E-Mail PM Web Find Quote Report
kryp2nyt
Full Member
***


Posts: 136
39 / – / –
Joined: Oct 2006
RE: [request] Option to turn on/off others Userpics.
No he wants a script to STOP TRANSFER of display pics from other contacts altogether
06-25-2007 05:06 PM
Profile PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [request] Option to turn on/off others Userpics.
quote:
Originally posted by kryp2nyt
No he wants a script to STOP TRANSFER of display pics from other contacts altogether
No, he wants to toggle the option to see the DPs of his contacts in a quicker way than going to the menu: Tools > Options > General > Show display pictures from others...

The quickest way is as scott2010_h showed. This also is a temporary setting. As soon as you close the conversation window the default option will be applied again (the one you've set in the options). Which seems the most logical choice for him, as he normally doesn't want to see the DPs of others, although this method is only per contact/chat and not global.

It might be possible to write a script to do this automatically for only certain contacts (his trusted friends). But that requires some looking up and 'investigating' what windows message is send or what internal function is called when you press the arrow next to the display picture of the contact. It doesn't seem impossible...
.-= A 'frrrrrrrituurrr' for Wacky =-.
06-27-2007 11:57 PM
Profile PM Find Quote Report
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
31 / Male / Flag
Joined: Apr 2004
RE: [request] Option to turn on/off others Userpics.
And in reply to Cookie's post, here's an example code how you can achieve this using a script. This code snippet basically checks if the contact you opened a chat with is in an array and then fakes a click on the button. This won't work with more than 1 contact, however it's very easy to do so.
code:
var arrayContactsShowDP = new Array("john@hotmail.com", "mike@hotmail.com");

function OnEvent_ChatWndCreated(ChatWnd) {
   var Contact = new Enumerator(ChatWnd.Contacts).item();
   for(var i=0; i<arrayContactsShowDP.length; i++) {
      if(Contact.Email == arrayContactsShowDP[i]) {
         Interop.Call("user32", "SendMessageW", ChatWnd.Handle, 0x0111 /* WM_COMMAND */, /* cmdid: extbtnyou */ 2248, 0);
         break;
      }
   }
}

This post was edited on 06-28-2007 at 08:16 AM by Matti.
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
06-28-2007 08:13 AM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On