Here what I have so far from this link
http://forums.adobe.com/thread/962671I created the loop along with some
actions to make the list box visible on field entry.//Reset text
fieldWhichLocations.rawValue = ""; //loop through items in listboxfor(i
= 0; i < LocationListBox.length; i++) //if item selected
if(LocationListBox.getItemState(i)) //check if Text field value if null
if (WhichLocations.isNull) WhichLocations.rawValue =
LocationListBox.getDisplayItem(i); else WhichLocations.rawValue =
Whic...