fl.sourcePath

#### Availability

Flash CS4 Professional.

#### Usage

fl.sourcePath

#### Description

Property; a string that contains a list of items in the global ActionScript 3.0 Source path, which specifies the location of ActionScript class files. Items in the string are delimited by semi-colons. In the authoring tool, the items are specified by choosing Edit > Preferences > ActionScript > ActionScript 3.0 Settings.

#### Example

The following example adds the /Classes folder to the global ActionScript 3.0 Source path:

javascript
fl.trace(fl.sourcePath);
fl.sourcePath = "/Classes;" + fl.sourcePath;
fl.trace(fl.sourcePath);


#### See also

fl.flexSDKPath (../flash_object_(fl)/fl29.md), fl.externalLibraryPath (../flash_object_(fl)/fl23.md), fl.libraryPath (../flash_object_(fl)/fl39.md), document.sourcePath (../Document_object/docum36.md)