It would be pretty cool if QS supported some sort of action chaining,
via a shortcut like ctrl-tab or something, similar to ctrl-return.
Actually I have an idea how to implement it—a "process result..."
action that takes a QS command (from ctrl-return) in the first pane
and an action in the 3rd pane. Probably difficult to support 3-pane
actions as the second item in the chain, though...
Fortunately for you, AppleScript actions can take a file as input
directly using "on open theFile", and then get the path using "(quoted
form of POSIX path of theFile)". For instance, my script to convert a
plist to XML format is:
on open thePlist
do shell script "plutil -convert xml1 " & (quoted form of POSIX path
of thePlist)
return thePlist
end open
Lots of other cool stuff can be done this way—for instance I was just
inspired to make a "Make Burn Folder" and "Unmake Burn Folder" script
pair. "Encode"/"Decode URL" is also useful.