So removing the second line (BackgroundColor.1=) will do it. . .or is that line essential to the text showing up in the sim?
You have to put in a transparent color for the background per instruction I read.
Source
FSX TextInfo Gauge 3.0 And XML Tutorial
[SIZE=-1]By Rick Federmann[/SIZE]
Link:
http://www.flightsim.com/vbfs/fslib.php?searchid=24194086
Configuring Shift-Z: The Variables
Altitude GForce WindSpeed Latitude
AltitudeAgl FuelPercentage WindDirection LatitudeDec
Heading FuelRemainingGallons VideoDevice LatitudeHex
HeadingHex FuelRemainingPounds FrameRate Longitude
HeadingTrue VerticalSpeed AverageFrameRate LongitudeDec
Airspeed AngleOfAttack LockedFrameRate LongitudeHex
TrueAirspeed WindDirectionAndSpeed
Configuring Shift-Z: Font Color
You can specify the colors for the text and the background of the Shift-Z display by including
these parameters within a [TextInfo] section:
TextColor.1=255,255,255
BackGroundColor.1=0,0,0,128
Here is how they are parsed:
TextInfo RGB Color Alpha Channel
Item Section Numbers Color Number
TextColor .1 255,255,255 n/a
BackGroundColor .1 0,0,0 128
The alpha channel color number defines the transparency of the background. Any number
between 0-255 can be used.
0 Transparent background
128 Semi-transparent background
255 Opaque (solid) background
Here is an example of coloring Shift-Z:
And here are the settings that defined the colors:
[TextInfo.1]
AirSpeed=2,1
TrueAirspeed=2,2
TextColor.2=255,255,255 // white text
BackGroundColor.2=0,0,0,128 // black semi-transparent background
Heading=3,1
Latitude=3,2 // no color settings; uses the same color
Longitude=3,3 // settings as the previous line
Altitude=4,1
AltitudeAgl=4,2
VerticalSpeed=4,3
TextColor.4=255,0,0 // red text
BackGroundColor.4=255,255,0,255 // yellow opaque background
WindDirectionAndSpeed=5,1
TextColor.5=0,255,0 // green text
BackGroundColor.5=128,128,128,0 // gray transparent background; can use any color
// for the background because it is transparent
// so the background color will not be seen