Chris Cairns wrote:
Generally, whenever I find that a plugin is broken or some actions are not working (very common with Quicksilver) then I replace those actions with applescripts, which can be executed from the second pane of Quicksilver. To replace the run action for applescripts, the only thing i know of is to use "osascript" which runs applescripts using shell. But it has serious limitations, making it pretty much useless (For example, it does run applescripts which display dialog boxes). I hope, there is something else which can run applescripts.


I found a way to run applescripts if your "Run" action is broken.
Give this script a name like "Run AppleScript". Place this script in
~/Library/Applications support/Quicksilver/Actions folder

and restart Quicksilver.



on open thefiles
   repeat with aitem in thefiles
       run script (aitem)
   end repeat
end open



Now bring up any script that you want to run in first pane and tab to bring the script "Run AppleScript" in the second pane. Press return.

Reply via email to