If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
How hard would it be to create an applescript application that figures out what the current path is of the foremost window (i'd run this from the Finder toolbar buttons) and outputs it to the clipboard/dialog window?
set the_folder to (folder of the front window) as text
set the clipboard to the_folder
display dialog the_folder
end tell
Doesn't work if the directory of the front window is higher than a drive however. "My computer" for example. If you want shell style paths, insert this line after the first line in the tell block...
set the_folder to POSIX path of the_folder
(Last edited by zro; Jun 6, 2007 at 12:06 AM.
(Reason:Finish it off))