List.multipleSelection

Availability

Flash Player 6.0.79.

Edition

Flash MX 2004.

Usage

listInstance.multipleSelection

Description

Property; indicates whether multiple selections are allowed (true) or only single selections are allowed (false). The default value is false.

Example

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;