Howdy and Welcome aboard...
Create an instance of list box on the stage with the instance name of 'lboSizes', and put the following code to the frame...
ActionScript Code:
lboData = new Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13);
lboSizes.setDataProvider(lboData);
lboSizes.setSelectMultiple(true);
lboSizes.setChangeHandler("setSizes");
function setSizes(component)
{
sizeArray = component.getSelectedItems();
sizeArray.sortOn("label");
for (i = 0 ; i < sizeArray.length ; i++)
trace("Item " + (i + 1) + " = " + sizeArray[i].label);
}
I think this can get you started...
Check out the methods in the specific component in the Flash manual for more information...