I am using a scroller component within a custom skin for a SkinnableDataContainer. I am running into an issue in that the thumbbar of the scroller stops at about the 50% point, however this is actually the end of the scrollable area. In actuality, the thumbbar should be at the bottom of the scroll track. Here's the code for the scroller:

<s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
         xmlns:mx="library://ns.adobe.com/flex/halo" bottom="150"  >

<!-- Properties of the parent ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->

<s:states>
    <s:State name="normal" />
    <s:State name="disabled" />
</s:states> 


<!-- Metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->   

<fx:Metadata>
    [HostComponent("spark.components.SkinnableDataContainer")]
</fx:Metadata>  


<!-- UI components ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->

<s:Rect left="0" right="0" 
        bottom="0" top="0"
        radiusX="4" radiusY="4"   >
    <s:fill>
        <s:SolidColor id="fillColor" color="0xEFEFEF"/>
    </s:fill>
</s:Rect>   

<s:Group width="905" height="395" id="mainGroup">
    <s:Scroller left="10" right="10" top="4" bottom="10" >
            <s:DataGroup id="dataGroup" />              

    </s:Scroller>
    <s:Rect left="0" right="0" top="0" bottom="0">
        <s:stroke>
            <s:SolidColorStroke weight="1" color="0xD8D8D8"/>
        </s:stroke>
    </s:Rect>
</s:Group>

link|improve this question
Having a similar problem myself. Haven't found a solution yet. – bpanulla Jul 12 '10 at 19:18
I'm also having the same problem... – verveguy Sep 14 '10 at 4:22
feedback

1 Answer

Seems to be a bug.

Have a look at this forum post:

http://forums.adobe.com/thread/608972?tstart=0

it seems that some users was using the the Colbalt Graphical Theme under the Flex 4 Graphical Themes in the Project Properties > Flex Theme section. It turns out that the scroller is broken for all components when using this theme!!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.