I am trying to get a tile list to use the whole width of the screen to
display the results.

Right now it only hits about 40% of the screen.
Here is my current set up.

<mx:TileList dataProvider="{_xlcMyListData}" labelField="fleet"
left="35" right="15"
                width="350" backgroundColor="#000000" color="#ff0000" 
fontSize="27"
borderColor="#000000" columnWidth="315" rowHeight="50"
themeColor="#808080" fontWeight="bold" allowMultipleSelection="true" 
id="TileList1" height="0" y="202" x="178"/>
                

Then the States values

<mx:SetProperty target="{TileList1}" name="y"/>
<mx:SetProperty target="{TileList1}" name="height" value="75%"/>
<mx:SetProperty target="{TileList1}" name="width" value="90%"/>
<mx:SetProperty target="{TileList1}" name="x" value="50"/>
<mx:SetStyle target="{TileList1}" name="top" value="66"/>
<mx:SetStyle target="{panel1}" name="bottom" value="0"/>
<mx:SetStyle target="{TileList1}" name="left"/>
<mx:SetStyle target="{TileList1}" name="right"/>
<mx:SetStyle target="{TileList1}" name="fontFamily" value="Arial"/>

I have tried a few ways of doing this.

I am just trying to get the most bang for my screen.

Thanks for any ideas.

Reply via email to