Real Geek Forums  

Go Back   Real Geek Forums > Archives > Operating Systems > Windows XP > Customize Windows XP

Notices

Reply

Theme applied causes some discoloration on menubars

 

LinkBack Thread Tools Display Modes
Old 04-09-2004, 01:32 PM   #1 (permalink)
Default Theme applied causes some discoloration on menubars

Only in some applications, some themes, some times, when a new theme
is applied, some programs' menu bars go white as you highlight each
item and stay white. It is weird. Doesn't always happen, nor always
with the same themes.

Any ideas?

Even reboot doesn't seem to fix this.


---Atreju---
Atreju
Guest
 
Posts: n/a
Reply With Quote  
Old 04-09-2004, 06:56 PM   #2 (permalink)
Default Re: Theme applied causes some discoloration on menubars

Hi,

By default, it is set to white.

Right click the Desktop/Properties/Appearance/Advanced. Select "Menu" from
the drop box and set the color for background.

--
Happy Easter,
Kelly

Microsoft-MVP Windows® XP

Troubleshooting Windows XP
http://www.kellys-korner-xp.com

Taskbar Repair Tool Plus!
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Atreju" <someone@who.hates.junkmail> wrote in message
news:lj9d70t52sui1njib89rn4k0rmj2jmno8v@4ax.com...
Quote:
> Only in some applications, some themes, some times, when a new theme
> is applied, some programs' menu bars go white as you highlight each
> item and stay white. It is weird. Doesn't always happen, nor always
> with the same themes.
>
> Any ideas?
>
> Even reboot doesn't seem to fix this.
>
>
> ---Atreju---

Kelly
Guest
 
Posts: n/a
Reply With Quote  
Old 04-11-2004, 01:33 AM   #3 (permalink)
Default Re: Theme applied causes some discoloration on menubars

On Fri, 9 Apr 2004 13:56:15 -0500, "Kelly" <kelly@mvps.org> wrote:
Quote:
>Hi,
>
>By default, it is set to white.
>
>Right click the Desktop/Properties/Appearance/Advanced. Select "Menu" from
>the drop box and set the color for background.
Thanks!


---Atreju---
Atreju
Guest
 
Posts: n/a
Reply With Quote  
Old 04-11-2004, 05:44 AM   #4 (permalink)
Default Re: Theme applied causes some discoloration on menubars

I posted about this here:

http://www.google.com/groups?hl=en&l...tngp13.phx.gbl

The following text (everything between the lines) can be saved with a ..vbs extension and run as a script to toggle the FlatMenus bit.

Keith

---------------------------------------------------------------------------
'Toggle the Flat Menus bit

Set WSHShell = WScript.CreateObject("WScript.Shell")
Upm = "HKCU\Control Panel\Desktop\UserPreferencesMask"

dim MenuState

MenuState = Array ("Off", "On")

MaskBytes = WSHShell.RegRead (Upm)

FlatMenuOn = (MaskBytes(2) and &H02) \ 2

Message2 = "Flat Menus are currently turned " & MenuState(FlatMenuOn) & "." & vbCR &vbCR
Message2 = Message2 & "Running this script will turn them " & MenuState(Abs((FlatMenuOn - 1))) & "." & vbCR & vbCR
Message2 = Message2 & "('On' is the 'correct' setting for XP style display)" & vbCR & vbCR
Message2 = Message2 & "Continue?"

X = MsgBox(Message2, vbYesNo, "Toggle Flat-Menu Setting")

If X = 6 Then

MaskBytes(2) = CByte(MaskBytes(2) Xor &H02)

MaskStr = ""
for each MaskByte in MaskBytes
strByte = right( "00" & hex(MaskByte), 2 )
MaskStr = strByte & MaskStr
next

WSHShell.RegWrite Upm, CLng("&H" & MaskStr), "REG_BINARY"

MsgBox "You must logoff/logon for changes to take effect." & vbcr & vbcr, 4096, "Action Completed"

Else

MsgBox "No changes were made to your system." & vbcr & vbcr, 4096, "Action Cancelled"

End If

---------------------------------------------------------------------------------------------------
"Atreju" <someone@who.hates.junkmail> wrote in message news:lj9d70t52sui1njib89rn4k0rmj2jmno8v@4ax.com...
Quote:
> Only in some applications, some themes, some times, when a new theme
> is applied, some programs' menu bars go white as you highlight each
> item and stay white. It is weird. Doesn't always happen, nor always
> with the same themes.
>
> Any ideas?
>
> Even reboot doesn't seem to fix this.
>
>
> ---Atreju---
Keith Miller
Guest
 
Posts: n/a
Reply With Quote  
Reply

Tags
None

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
discoloration and fuzzyness gi_dragon Windows XP Video 0 07-10-2005 08:22 PM
Discoloration in Delta Force Land Warrior Pinohcchio Windows XP Games 1 08-22-2004 03:52 AM
theme for xp like netscape modern theme manlio Customize Windows XP 2 04-07-2004 08:14 PM
Occasional major discoloration of icons and other images Thomas Windows XP Video 3 09-22-2003 02:45 PM
Missing menubars from Display properties Pete Windows XP Video 1 07-05-2003 01:16 PM


All times are GMT. The time now is 03:53 AM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright © 2005 - 2007 RealGeek.com. All rights reserved.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90