Re: Requirement to add Image AND Text to a single SpinnerList componente

2014-07-26 Thread Philip Medlam
OK, so after some frustration (don't know how I could't get this sorted earlier) my solution is as follows (for those who have a similar issue): *?xml version=1.0 encoding=utf-8?* *s:View xmlns:fx=http://ns.adobe.com/mxml/2009 http://ns.adobe.com/mxml/2009* *

Re: Pushing Items and Controls to Bottom of Mobile View

2014-07-26 Thread Neverbirth
First, remove that empty VGroup. Then, depending of what you actually want, either set verticalAlign=bottom to your VerticalLayout, or remove completely your layout property, and set bottom=0 to your list. Seeing you only have a List, I'd go with the second one. -- View this message in

Re: Pushing Items and Controls to Bottom of Mobile View

2014-07-26 Thread Neverbirth
I misread the OP, aside from the things I mentioned above, you'd have to set your list to use a custom layout, or something along the lines. The list is populated from top to bottom, so if its height is bigger than the items displayed, it will leave some space below. So you can make: s:List

Re: Pushing Items and Controls to Bottom of Mobile View

2014-07-26 Thread Angelo Anolin
Thank you @neverbirth. I used the suggestions you've provided and worked like a charm. On Sat, Jul 26, 2014 at 3:38 AM, Neverbirth neverbi...@gmail.com wrote: I misread the OP, aside from the things I mentioned above, you'd have to set your list to use a custom layout, or something along the