User Guide

592 ActionScript classes
onCancel (FileReferenceList.onCancel event
listener)
onCancel = function(fileRefList:FileReferenceList) {}
Invoked when the user dismisses the file-browsing dialog box. (This dialog box is displayed
when you call the
FileReferenceList.browse(), FileReference.browse(), or
FileReference.download() methods.)
Availability: ActionScript 1.0; Flash Player 8
Parameters
fileRefList:flash.net.FileReferenceList - The FileReferenceList object that initiated
the operation.
Example
The following example demonstrates the
onCancel listener.
import flash.net.FileReferenceList;
var listener:Object = new Object();
listener.onCancel = function(fileRefList:FileReferenceList) {
trace("onCancel");
}
var fileRef:FileReferenceList = new FileReferenceList();
fileRef.addListener(listener);
fileRef.browse();
See also
browse (FileReferenceList.browse method)
onSelect (FileReferenceList.onSelect event listener)
onSelect = function(fileRefList:FileReferenceList) {}
Invoked when the user selects one or more files to upload from the file-browsing dialog box.
(This dialog box is displayed when you call the
FileReferenceList.browse(),
FileReference.browse(), or FileReference.download() methods.) When the user
selects a file and confirms the operation (for example, by clicking Save), the FileReferenceList
object is populated with FileReference objects that represent the files selected by the user.
Availability: ActionScript 1.0; Flash Player 8