Wednesday, March 12, 2014

Make a dialog that allows you to select multiple files

myFiles = select_multiple_files();

function select_multiple_files(){
var myFiles = File.openDialog("Please select the files you desire",true);
return myFiles;
}

// it's the 'true' option in the parentheses that allows multiple files to be selected.

No comments:

Post a Comment