Everthing is going good so far, except the ProgressBar widget is giving me fits. I imagine I'm just overlooking something obvious (usually am).
The Problem:
It would appear that the filler area of the bar is being scaled to a negative factor rahter than being clipped. See images below for a visual of the problem.
The Code:
Code: Select all
 
        <ImagerySection name="ProgressFill" >
            <FrameComponent>
                <Area>
                    <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim>
                    <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim>
                    <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim>
                    <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim>
                </Area>
                <Image type="LeftEdge" imageset="Datalink" image="ProgBarFillLeft" />
                <Image type="RightEdge" imageset="Datalink" image="ProgBarFillRight" />
                <Image type="Background" imageset="Datalink" image="ProgBarFillMiddle" />
            </FrameComponent>
        </ImagerySection>
The Visual:
 
Any help is appreciated!



