Move Selected Files to a New Folder using Automator and AppleScript.
Launch Automator, select "Automator" from the Library sidebar, then double-click "Run AppleScript" from the Action sidebar. Select all in the script field and paste:
Go to File>Save As Plug-In... and save it as a plug-in for the Finder.
This gives you a new contextual submenu that will appear under Automator when control/right-clicking in the Finder. Select what you want to move, then invoke the menu.
If you have folder or window within view that you want to move the file to, drag the folder (or a file within it) or the icon in the title bar of an open folder to the "Choose a Folder" dialog to jump to that location.
---
This method was compiled based on several results from sites and message board threads that turned up in a search.
Launch Automator, select "Automator" from the Library sidebar, then double-click "Run AppleScript" from the Action sidebar. Select all in the script field and paste:
Code:
on run {input, parameters}
set the_folder to (choose folder)
tell application "Finder"
move selection to the_folder
end tell
return input
end run
Go to File>Save As Plug-In... and save it as a plug-in for the Finder.
This gives you a new contextual submenu that will appear under Automator when control/right-clicking in the Finder. Select what you want to move, then invoke the menu.
If you have folder or window within view that you want to move the file to, drag the folder (or a file within it) or the icon in the title bar of an open folder to the "Choose a Folder" dialog to jump to that location.
---
This method was compiled based on several results from sites and message board threads that turned up in a search.