Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (*
- Scripting by Applehelpwriter 2013
- http://applehelpwriter.com
- WHAT'S IT FOR?
- I use this script to move things quickly from the desktop.
- Create a hotkey for it (I use FastScripts for this, but you can do it via 'Services' menu), then
- select file/s you want to move, hit the hotkey and use the Finder tree to pick the destination.
- *)
- --start
- tell application "Finder"
- try
- get selection
- if selection is not equal to {} then
- move selection to (choose folder)
- else
- display dialog "Nothing selected to move!" buttons {"OK"} default button "OK" with icon 2
- end if
- on error
- set selection to {}
- end try
- end tell
- --eof
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement