
Flash Player 7 + TheSpringBox V1
Widget.onDropFile = function(path:String) : Void {
// your statements here
}
path - The path of a file that was dropped on the widget.
Nothing.
Event handler; an event handling function called when a file path is dropped into a window.
The function below could be used to handle a dropped file:
Widget.onDropFile = function(jpgPath:String) {
//load the JPG file
mcPictureFrame.loadMovie(jpgPath);
};