I am navigating the items of tile list using next and previous button. I need to highlight the first item in the tilelist by default ( like the first item is being selected by default)

link|improve this question

71% accept rate
feedback

1 Answer

Just require selection, which will default select the first item:

<s:List requireSelection="true">
    <s:layout>
        <s:TileLayout />
    </s:layout>
</s:List>

Otherwise, you can set the selected index:

<s:List selectedIndex="0" />

Or...

<fx:Script>
    <![CDATA[
        public function selectFirstItem():void
        {
            list.selectedIndex = 0;
        }
    ]]>
</fx:Script>

<s:List id="list" />

Likewise if you're using the deprecated mx:TileList

<mx:TileList selectedIndex="0" />
link|improve this answer
Hi Jason, Thanks for the reply. But what I wanted is the highlight/Selection color(default blue) needs to be shown without mouseover – Srivi Nov 3 '11 at 10:51
1  
Im still not sure what your question really is. I get confused by your "selected" and "mouseover". – Siebe Nov 3 '11 at 11:43
The first item of the tile list should be shown highlighted/Selected by default – Srivi Nov 9 '11 at 4:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.