How to use the horizontal align property of TileList or List in flex?
I want to make an align left of my TileList with only 1 column.
I know I can use a simple List for that, but this is a requirement.
Regards Zeeshan
How to use the horizontal align property of TileList or List in flex?
I want to make an align left of my TileList with only 1 column.
I know I can use a simple List for that, but this is a requirement.
Regards Zeeshan
I believe you are looking for the style textAlign so in MXML you would just add the attribute textAlign = "left"
in AS it would be myTileList.setStyle("textAlign","left");