226
Objects
Description
Method; opens a File Open or File Save system dialog box and lets the user specify a file to be
opened or saved.
Example
The following example lets the user choose a FLA file to open and then opens the file. (The
fl.browseForFileURL()
method can browse for any type of file, but
fl.openDocument()
can open only FLA files.)
var fileURL = fl.browseForFileURL("open", "Select file");
var doc = fl.openDocument(fileURL);
See also
fl.browseForFolderURL()
fl.browseForFolderURL()
Availability
Flash 8.
Usage
fl.browseForFolderURL( [
description
] )
Parameters
description
An optional string that specifies the description of the Browse For Folder
dialog box. If this parameter is omitted, nothing is shown in the description area.
Returns
The URL of the folder, expressed as a file:/// URI; returns
null
if the user cancels out of the
dialog box.
Description
Method; displays a Browse for Folder dialog box and lets the user select a folder.
NOT
E
The title of the dialog box is always “Browse for Folder.” Use the description parameter
to add more detail in the description area under the title, such as “Select a folder” or
“Select the path that contains the profile you want to import.”
Содержание FLASH 8-EXTENDING FLASH
Страница 1: ...Extending Flash...
Страница 38: ...38 Top Level Functions and Methods...
Страница 532: ...532 Objects...
Страница 554: ...554 C Level Extensibility...