#27406
Yutaka Emura
Keymaster

If File Dropped is enabled, dropped files must be handled by the specified macro using the DroppedFiles collection.
Here is an example how to do this:

files = new Enumerator( DroppedFiles );
for( ; !files.atEnd(); files.moveNext() ){
   alert( files.item() );
}

I will clarify this in Help.