Tagged Questions

2
votes
3answers
6k views

Flex - Change position of scrollbar to the top of a HorizontalList component

By default, the Horizontal ScrollBar of a HorizontalList component will be at the bottom. Is there a way to reposition it so it is at the top? Just for clarity, I do not mean moving the scroll ...
1
vote
1answer
770 views

Flex - Remove horizontallist rollover color

I'd like to remove the rollovercolor of a horizontallist (my component has a background image). I've tried using a css style sheet by setting the "roll-over-color" property to "transparent"... But I ...
1
vote
1answer
1k views

Horizontallist variable width

i want to populate a horizontalList component from a xml file, the width value will be inside the xml file as well with all the data. actually i have this code: <mx:Model id="epg" ...
1
vote
4answers
774 views

Centering item renderers in a HorizontalList

I am trying to center itemRenderers in a horizontal list if the number of items in the list is less than the maximum visible number. Has anyone found a good way to do this? See an illustration of ...
0
votes
1answer
164 views

Horizontallist control with XML dataprovider

I'm using a HorizontalList control with an XML file as a data provider. This is how the XML looks: <data> <zone name="Europe"> . . . </zone> ...
0
votes
1answer
405 views

Flex - Saving a new order of items of a HorizontalList through AMF

I've been working with the drag-and-drop of items inside an Horizontal List in Flex. It works fine, but now I need to save the new order through AMF in my database. I'm pretty sure it's quite easy, ...
0
votes
1answer
773 views

resizing item renderer when horizontalList resizes

I have a HorizontalList that is resized at runtime. The problem is that the items are not adjusting their height to the height of the HorizontalList. I use an item renderer (vBox) which has its height ...
0
votes
1answer
403 views

How can I load something from MySQL to an HorizontalList in Flex

How can I load text from MySQL to an HorizontalList in Flex3 ? I am using : <mx:ControlBar x="10" y="40" width="460" height="230"> <mx:HorizontalList id="dataGrid" ...