Trying to find out how to get the data from a getSelectedItems pull. All I get is an [object Object],[object Object] array. I get it to select all the items in the list view using an array, but I can not seem to show the data that has been in it. Please advise
Got it! Indeed myObjArray contains objects: the label and the data of the selected objects. So if you want to trace the selected objects, you’ll have to
for(i = 0; i < myObjArray.length; i++){
trace(myObjArray[ i].label);
}
Is there a way to build an array not knowing how many entries you are going to have: I am filling the list view with items and then selecting them. I want the users to be able to enter in as many as they want. Any suggestions
Creating engaging and entertaining content for designers and developers since 1998.