Here's
DropOff!
Moves dropped files to a user defined folder.
Just place the script on the desktop, edit the target line in the code.
Now your can drop files on it, and they are moved to target.
You can of course have more than one script there, pointing to different folders.
It can easily be enhanced to overwrite or rename existing files, add a proper hotspot or whatever.
Skrommel @ 2008
;DropOff.ahk
; Moves dropped files to a user defined folder.
;Skrommel @ 2008
target=C:\Temp\1
#NoEnv
#SingleInstance,Off
SendMode,Input
SetWorkingDir,%A_ScriptDir%
SetBatchLines,-1
FileCreateDir,%target%
Loop,%0%
{
source:=%A_Index%
TrayTip,DropOff,Moving %source% to %target%
FileMove,%source%,%target%
}