fl.packagePaths - dropped
#### Availability
Flash CS3 Professional. Dropped in Adobe Animate.
#### Usage
fl.packagePaths
#### Description
Dropped in Adobe Animate.
Property; a string that corresponds to the global Classpath setting in the ActionScript 2.0 Settings dialog box. Class paths within the string are delimited with semi-colons (;). To view or change ActionScript 3.0 Classpath settings, use fl.as3PackagePaths (../flash_object_(fl)/fl2.md)).
#### Example
The following example illustrates changing the ActionScript 2.0 Classpath settings:
javascript
fl.trace(fl.packagePaths);
// Output (assuming started with default value)
// .;$(LocalData)/Classes
fl.packagePaths="buying;selling";
fl.trace(fl.packagePaths);
// Output
// buying; selling
#### See also
fl.resetPackagePaths() - dropped (../flash_object_(fl)/fl60.md)