Messenger Plus! Live Enhancer |
Author: |
Message: |
Dr Nick
Junior Member
Firefox > IE
Posts: 59 Reputation: 1
31 / /
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 |
|
|
TazDevil
Full Member
sleep(0);
Posts: 359 Reputation: 11
41 / /
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 |
|
|
SuperSonic
Junior Member
Posts: 32
30 / /
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?
|
|
02-23-2009 11:36 AM |
|
|
TazDevil
Full Member
sleep(0);
Posts: 359 Reputation: 11
41 / /
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 |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
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 |
|
|
TazDevil
Full Member
sleep(0);
Posts: 359 Reputation: 11
41 / /
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 |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
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++
This post was edited on 02-23-2009 at 06:09 PM by matty.
|
|
02-23-2009 06:07 PM |
|
|
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 |
|
|
TazDevil
Full Member
sleep(0);
Posts: 359 Reputation: 11
41 / /
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 |
|
|
TazDevil
Full Member
sleep(0);
Posts: 359 Reputation: 11
41 / /
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 |
|
|
Pages: (38):
« First
«
29
30
31
32
[ 33 ]
34
35
36
37
»
Last »
|
|