Description
Boolean. Set the property to true to accept file or text dropping.
Syntax
Application.dragdrop.enable
Example
To accept a file or text transferred by dropping it into the main window,
Application.dargdrop.enable = true;
Application.dragdrop.onDropText
= function (str)
{
trace(str);
}
Application.dragdrop.onDropFiles =
function (files)
{
trace(files);
}