Listbox: add item to top

Any way to add a listbox item to the top of the listbox?
(The FlashMX component standardly adds items at the bottom)

Use listbox.addItemAt.

mylistbox.addItemAt(0, "label", value);

coool
Thanks

No problem :thumb: