What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Messenger Plus! Live Enhancer

Pages: (38): « First « 29 30 31 32 [ 33 ] 34 35 36 37 » Last »
3 votes - 3.67 average   Messenger Plus! Live Enhancer
Author: Message:
Dr Nick
Junior Member
**

Avatar
Firefox > IE

Posts: 59
Reputation: 1
31 / Male / Flag
Joined: Dec 2008
RE: Messenger Plus! Live Enhancer
I have the same problem - I have Vista and I tried disabling Aero and voila, problem resolved...

Good Luck fixing it - I hope it's fixable ;)

Nick
<?
while(!success) { $try++; }
?>
-----------------
Windows 7 Ultimate (6.1.7000)
Windows Live Messenger 14.0.0206
Messenger Plus! Live 4.81.0.358
02-23-2009 10:21 AM
Profile PM Web Find Quote Report
TazDevil
Full Member
***

Avatar
sleep(0);

Posts: 359
Reputation: 11
40 / Male / Flag
Joined: May 2004
O.P. RE: Messenger Plus! Live Enhancer
If the code below works as i expect it, then i think its fixable...
I am open to recommendations...


( source: http://msdn.microsoft.com/en-us/library/aa969518(VS.85).aspx )

//Alexander Klimoff (http://netsources.narod.ru)

// See also MSDN Magazine April 2007

[DllImport("dwmapi.dll", PreserveSig = false)]
public static extern bool DwmIsCompositionEnabled();

// Check to see if composition is Enabled
if (DwmIsCompositionEnabled())
{
MessageBox.Show("Aero Glass enabled");
}
else
{
MessageBox.Show("Aero Glass disabled");

}

This post was edited on 02-23-2009 at 12:37 PM by TazDevil.
Window Manager is discontinued, for WLM try the new,
Enhancer for contact list docking, auto-hide, hide taskbar button, remove button flashing and remember keyboard layout in conversation windows
02-23-2009 11:07 AM
Profile PM Web Find Quote Report
SuperSonic
Junior Member
**

Avatar

Posts: 32
30 / Male / Flag
Joined: Sep 2008
RE: Messenger Plus! Live Enhancer
Link's dead xP And if I read correctly, and correct me if I'm wrong (No coding knowledge, what-so-ever) That's checking if aero is compatable, and if not, it disables it?
[Image: Lann094.png]
02-23-2009 11:36 AM
Profile PM Find Quote Report
TazDevil
Full Member
***

Avatar
sleep(0);

Posts: 359
Reputation: 11
40 / Male / Flag
Joined: May 2004
O.P. RE: Messenger Plus! Live Enhancer
quote:
Originally posted by TazDevil
If the code below works as i expect it, then i think its fixable...
I am open to recommendations...


( source: http://msdn.microsoft.com/en-us/library/aa969518(VS.85).aspx )

//Alexander Klimoff (http://netsources.narod.ru)

// See also MSDN Magazine April 2007

[DllImport("dwmapi.dll", PreserveSig = false)]
public static extern bool DwmIsCompositionEnabled();

// Check to see if composition is Enabled
if (DwmIsCompositionEnabled())
{
MessageBox.Show("Aero Glass enabled");
}
else
{
MessageBox.Show("Aero Glass disabled");

}
Can someone with coding knowledge and VISTA or WIN7 confirm this code for me ?
Window Manager is discontinued, for WLM try the new,
Enhancer for contact list docking, auto-hide, hide taskbar button, remove button flashing and remember keyboard layout in conversation windows
02-23-2009 04:00 PM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Messenger Plus! Live Enhancer
It will work but not as you expected. DwmIsCompositionEnabled has an output parameter that is true if enabled or false if it is not. You need to check that not the return value of the API.
02-23-2009 04:47 PM
Profile E-Mail PM Find Quote Report
TazDevil
Full Member
***

Avatar
sleep(0);

Posts: 359
Reputation: 11
40 / Male / Flag
Joined: May 2004
O.P. RE: Messenger Plus! Live Enhancer
quote:
Originally posted by matty
You need to check that not the return value of the API.

What exactly do i need to check, i dont get it...
Is there any other API to tell me whether Aero is enabled or not ?
Window Manager is discontinued, for WLM try the new,
Enhancer for contact list docking, auto-hide, hide taskbar button, remove button flashing and remember keyboard layout in conversation windows
02-23-2009 04:52 PM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Messenger Plus! Live Enhancer
C++ code:
//Alexander Klimoff (http://netsources.narod.ru)
 
// See also MSDN Magazine April 2007
 
[DllImport("dwmapi.dll", PreserveSig = false)]
public static extern bool DwmIsCompositionEnabled();
public bool isAeroEnabled;
 
// Check to see if composition is Enabled
DwmIsCompositionEnabled(isAeroEnabled);
if (isAeroEnabled) {
    MessageBox.Show("Aero Glass enabled");
}
else {
    MessageBox.Show("Aero Glass disabled");
}


Something like that... note matty doesn't code in c++ :P

This post was edited on 02-23-2009 at 06:09 PM by matty.
02-23-2009 06:07 PM
Profile E-Mail PM Find Quote Report
lindi
New Member
*


Posts: 7
Joined: Feb 2009
RE: Messenger Plus! Live Enhancer
Dear TazDevil, thank you very much for your prompt help but I have downloaded your script and I could add it to my Messenger Plus, but I don't know how to activate it.  It doesn't appear any option for disable flashing window or any option to customize the enhancer, I only can see that I imported that script but nothing else. 

Please explain me how to use or activate it.

Sorry if I cause you problems....but I am desperate...I need to disable the flashing window in a MSN conversation.

Thank you very much!!!
02-23-2009 06:09 PM
Profile E-Mail PM Find Quote Report
TazDevil
Full Member
***

Avatar
sleep(0);

Posts: 359
Reputation: 11
40 / Male / Flag
Joined: May 2004
O.P. RE: Messenger Plus! Live Enhancer
quote:
Originally posted by matty
It will work but not as you expected. DwmIsCompositionEnabled has an output parameter that is true if enabled or false if it is not. You need to check that not the return value of the API.
Ah i get it now... The code posted was c# not c++.
In c++ implementation it takes an in/out parameter to get the output value, of course that is the one i will use ;P, besides the script is in c++.
Window Manager is discontinued, for WLM try the new,
Enhancer for contact list docking, auto-hide, hide taskbar button, remove button flashing and remember keyboard layout in conversation windows
02-23-2009 06:13 PM
Profile PM Web Find Quote Report
TazDevil
Full Member
***

Avatar
sleep(0);

Posts: 359
Reputation: 11
40 / Male / Flag
Joined: May 2004
O.P. RE: Messenger Plus! Live Enhancer
quote:
Originally posted by lindi
Dear TazDevil, thank you very much for your prompt help but I have downloaded your script and I could add it to my Messenger Plus, but I don't know how to activate it.  It doesn't appear any option for disable flashing window or any option to customize the enhancer, I only can see that I imported that script but nothing else. 

Please explain me how to use or activate it.

Sorry if I cause you problems....but I am desperate...I need to disable the flashing window in a MSN conversation.

Thank you very much!!!
Well in the contact list window there is an icon with 3 cubes added by Messenger Plus Live.

When you click it, a menu will appear and Enhancer should be listed there, if you select it a sub menu will appear and select "Preferences", go through the preferences dialog box and you will find the option in the general page.
Window Manager is discontinued, for WLM try the new,
Enhancer for contact list docking, auto-hide, hide taskbar button, remove button flashing and remember keyboard layout in conversation windows
02-23-2009 06:17 PM
Profile PM Web Find Quote Report
Pages: (38): « First « 29 30 31 32 [ 33 ] 34 35 36 37 » Last »
« 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