Hi,
I'm trying to make a gauge to display:
FlightPlanWaypointEstimatedFuelConsumption,
FlightPlanWaypointFuelRemainedAtArrival,
FlightPlanWaypointDistanceTotal,
FlightPlanWaypointRemainingTotalDistance,
FlightPlanWaypointEstimatedTimeRemaining.
Unfortunately,it shows zero.
I have been struggling with it for several days.
I searched various forums and read "GPS_GUIDEBOOK_v.2.0.1", unfortunately I can not deal with it.
I'm a graphic designer and I'm poor at writing codes (but I'm trying to learn).
I do not know where the error is.
Here's how my .xml document is built:
And it looks like this:
I'm trying to make a gauge to display:
FlightPlanWaypointEstimatedFuelConsumption,
FlightPlanWaypointFuelRemainedAtArrival,
FlightPlanWaypointDistanceTotal,
FlightPlanWaypointRemainingTotalDistance,
FlightPlanWaypointEstimatedTimeRemaining.
Unfortunately,it shows zero.
I have been struggling with it for several days.

I searched various forums and read "GPS_GUIDEBOOK_v.2.0.1", unfortunately I can not deal with it.
I'm a graphic designer and I'm poor at writing codes (but I'm trying to learn).
I do not know where the error is.
Here's how my .xml document is built:
Code:
<Gauge Name="new 1" Version="1.0">
<Macro Name="c">C:fs9gps</Macro>
<Macro Name="g">C:fs9gps</Macro>
<!-- CALC -->
<Element>
<Visible>(L:calc, number) 1 ==</Visible>
<Element>
<Position X="25" Y="40"/>
<FormattedText X="980" Y="300" Font="Quartz" FontSize="100" LineSpacing="120" Color="greenyellow" BackgroundColor="transparent" Bright="Yes">
<String>
\{dn}%EFC%\{md}%((@c:FlightPlanWaypointEstimatedFuelConsumption,liters))%!d!
%/%((@c:FlightPlanWaypointFuelRemainedAtArrival,liters))%!d!%\{dn}%RFA L%
\n%WDT%\{md}%((@c:FlightPlanWaypointDistanceTotal,nmiles))%!d!
%/%((@c:FlightPlanWaypointRemainingTotalDistance,nmiles))%!d!%\{dn}%WRD NM%
\{dn}% ETR:%\{md}%((A:FlightPlanWaypointEstimatedTimeRemaining, hours) 24 % flr)%!02d!:%((A:FlightPlanWaypointEstimatedTimeRemaining, minutes) 60 % flr)%!02d!:%((A:FlightPlanWaypointEstimatedTimeRemaining, seconds) 60 % flr)%!02d!%
</String>
</FormattedText>
</Element>
</Element>
<Mouse>
<Area Left="517" Width="90" Top="614" Height="60">
<Cursor Type="Hand"/>
<Click>
1 (>L:calc, number)
</Click>
<Tooltip>%CALC%</Tooltip>
</Area>
</Mouse>
</Gauge>


