| Previous | Next | |
Windows: Flash 8 or 9 AS2.0 SWF + mProjector
3.0; Windows NT Support: Flash 7 SWF + mProjector
2.0;
Macintosh: Flash 8 or 9 AS2.0 SWF + mProjector
2.0 r10;
mWindow.onDropFiles = function (files:Array) {
// your statements here
}files - List of files being dropped into the window.
Nothing.
Event handler; An event handling function called when files are dropped into a window.
The following example sets a new onDropFiles() event handling function.
mWindow.onDropFiles = function (files)
{
if (files[0].substring(files[0].length-3)=="swf")
{
_root.loadMovie(files[0]);
}
}
| Questions or Feedback? | Previous | Next |