![]() ![]() | |
Flash Player 6.0.79.
Flash MX 2004.
listInstance.multipleSelection
Property; indicates whether multiple selections are allowed (true) or only single selections are allowed (false). The default value is false.
The following example tests to determine whether multiple items may be selected:
if (myList.multipleSelection){
// your code here
}
The following example allows the list to take multiple selections:
myList.selectMultiple = true;
![]() ![]() | |