<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
<br>I have a list component that loads up some glossary .xml to populate.<br>When the user clicks an entry in the left pane listing, the definition appears in the right.<br><br>On setup It would be nice to have the default selectedIndex at 0, but I can't get it to do that.<br>Any ideas?<br><br><br>function init(initObject){<br>  for (i = 0; i < initObject.glossData.PAGE.length; i++) {<br>    glosslist.addItem({label:initObject.glossData.PAGE[i].TITLE[0], def:initObject.glossData.PAGE[i].QUES[0]});<br>  }<br>}<br><br>glosslist.selectedIndex = 0;<br><br>//Create listener object.<br>var listListener:Object = new Object();<br>listListener.change = function (evt_obj:Object) {<br>  def_string = "<b>" + evt_obj.target.selectedItem.label + "</b><br>ll<br>" + evt_obj.target.selectedItem.def;    <br>  deffield.htmlText = def_string;<br>}<br><br>//Add listener.<br>glosslist.addEventListener("change", listListener);<br><br>stop();<br>   <br><br><br><br><br><br><br><br><br><br><br><br><br>                                      </body>
</html>