ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: A Desktop Hotspot to other location program

(1/1)

bassclarinetl2:
Hi, I need a program that defines a corner of the screen as a "drop target" for desktop items to be dragged upon and sent to another location (in my case my external hdd).  I download things to my desktop so I can find them and then hate having to open up the drive in explorer and then drag the items into it.

Strange I realize but I want my Desktop to look as clean as possible.

Thanks

lanux128:
couldn't think of any right now but this comes close: Desktop Teleporter.

skrommel:
 :) 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%
}

bassclarinetl2:
Thanks skrommel.

Navigation

[0] Message Index

Go to full version