Difference between revisions of "Skinning HowTo/Increase the transparency of Pie Menu"

From Second Life Wiki
Jump to navigation Jump to search
m
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
<< Back to [[Skinning HowTo/Basics]]
<< Back to [[Skinning HowTo/Basics]]


This HowTo is written for version:  1.20 Viewer (Release Candidate)
This HowTo is written for version:  1.20 Viewer.


= Intro =  
= Intro =  
Line 8: Line 8:
The transparent effect of the Pie Menus involves just one color entry, PieMenuBgColor.   
The transparent effect of the Pie Menus involves just one color entry, PieMenuBgColor.   


In the UI look of version 1.20, the greatest concern has been paid to legibility of the dark text on a light background.  As discussed on [[Skinning How To/Hardcoded limits in the xml files|this page]], the text color used here is dependent unfortunately on whatever '''same''' color is used in the top-level menus.
In the Silver skin look of version 1.20, the greatest concern has been paid to legibility of the dark text on a light background.  As discussed on [[Skinning How To/Hardcoded limits in the xml files|this page]], the text color used here is dependent unfortunately on whatever '''same''' color is used in the top-level menus.


You may prefer to see more of the world through the Pie Menu.  The following modification will accomplish that-- however, note that it does make the dark text harder to read against a now fainter background.
You may prefer to see more of the world through the Pie Menu.  The following modification will accomplish that-- however, note that it does make the dark text harder to read against a now fainter background.
Line 16: Line 16:
== Set a new value of PieMenuBgColor in the XML ==
== Set a new value of PieMenuBgColor in the XML ==


=== In folder \SecondLife\app_settings ===
=== In folder SecondLife\skins\silver\ ===
 
(Note: In a Release Candidate version, the folder referenced here is instead '''\SecondLifeReleaseCandidate\skins\[SKIN]\''', where [SKIN] is the particular viewer skin)


:'''colors_base.xml'''
:'''colors_base.xml'''

Latest revision as of 11:22, 15 August 2008

<< Back to Skinning HowTo/Basics

This HowTo is written for version: 1.20 Viewer.

Intro

The transparent effect of the Pie Menus involves just one color entry, PieMenuBgColor.

In the Silver skin look of version 1.20, the greatest concern has been paid to legibility of the dark text on a light background. As discussed on this page, the text color used here is dependent unfortunately on whatever same color is used in the top-level menus.

You may prefer to see more of the world through the Pie Menu. The following modification will accomplish that-- however, note that it does make the dark text harder to read against a now fainter background.

HowTo

Set a new value of PieMenuBgColor in the XML

In folder SecondLife\skins\silver\

colors_base.xml
Do not change anything in this file! This is the file which has the base entry for PieMenuBgColor: <PieMenuBgColor value="118, 156, 201, 230" />


Step 1. colors.xml

In this file (which will override the above values), paste the following as an entry between the <settings></settings> tags. This specifies a lower Opacity (or "Alpha") value of 150 instead of 230:

   <PieMenuBgColor value="118, 156, 201, 150" />

Step 2. Save the file colors.xml, and relaunch the SL viewer

To undo this color if you change your mind

  1. Open colors.xml as above, and delete the entry you made <PieMenuBgColor value="118, 156, 201, 150" />
  2. Save the file colors.xml, and relaunch the SL viewer

See Also

There is an interesting discussion and examples of "far out" Pie Menus on the Official Linden Lab Blog from 2007-10-11: http://blog.secondlife.com/2007/10/11/tip-of-the-week-7-a-deeper-taste-of-the-pie-menu/