Hi,
I have been trying to make a very simple applescript that concatenates the strings in panes 1 an 3, then run it as shell script.
using terms from application "Quicksilver"
on process text command with args
do shell script (command & args)
return result
end process text
on get argument count
return 2
end get argument count
on get direct types
return {"NSStringPboardType"}
end get direct types
on get indirect types
return {"NSStringPboardType"}
end get indirect types
end using terms
The "get argument count" handler should allow for a third pane to appear, but it does not. I'm using 1.0.0 (4000).
Any ideas why?
Thanks