|
Flash CS4 Resources |
fl.libraryPathAvailabilityFlash CS4 Professional. Usagefl.libraryPath DescriptionProperty; a string that contains a list of items in the global ActionScript 3.0 Library path, which specifies the location of SWC files or folders containing SWC 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. ExampleThe following example adds the /SWC folder to the global ActionScript 3.0 Library path: fl.trace(fl.libraryPath); fl.libraryPath = "/SWC;" + fl.libraryPath; fl.trace(fl.libraryPath); |