Hi,
I have a pretty simple question for you'll.
I want to have a TabBar and below it a series of small images.
So my code roughly looks like:
<mx:TabBar id="tBar">
<mx:dataProvider>{someArray}</mx:dataProvider>
</mx:TabBar>
<mx:HBox id="hBox" height="5%">
<mx:Repeater id="rep" dataProvider="{someXML}" >
<mx:Image id="img" source="{rep.currentit...@src}" width="75"
height="75" />
</mx:Repeater>
</mx:HBox>
When the repeater loads images from the xml, it exceeds the width of
the application and introduces the horizontal scroll bar. However, my
problem is that even the TabBar slides horizontally with the series
of images.
Ideally, I wouldn't want the TabBar to move. When the horizontal
scrollbar is moved, only the images in the HBox should move.
I tried putting the TabBar in a mx:Canvas and set it
horizontalScrollPolicy to off. But that doesn't work.
Any ideas?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---