I'm not sure from whom I received this plugin, but I think it was Delboy...

I have been using the Drag n' Drop plugin to drag folders with mp3 music into a songlist box. it works great. Is there a way to tweak the drag n drop plugin code so that individual or multi-selected files can also be dragged and dropped into the songlist box? The normal Drag n Drop check box property for the list box has to be unchecked for the drag n drop folder plugin to work. That prevents individual files from being dragged and dropped into the songlist box.
Here is the page start code (Script):
PluginRun("Drag'n'Drop PlugIn","AcceptFiles")
Here is the Event Handler code (Script):
PluginGet("Drag'n'Drop PlugIn","s$")
count=LEN(s$)-1
string$=StrCopy(s$,1,count)
SearchForFiles("string$","*.mp3,*.wav,*.wma")
ListBoxAddItem("SongList","RESET")
ListBoxAddItem("SongList","<List>")
**stop audio
AudioStop()
Thanks for any help!