If an Applescript file is selected in the first pane, QS reads it and
displays an appropriate action for it.
Specifically:
1) If the script starts with "on run" (or no specific "on ..."), the
Run action is available in the second pane.
2) If the script starts with "on open", the Open File... action is
available in the second pane.
3) If the script starts with "on process text" (inside a "using terms
from application "Quicksilver"" block), the Process Text.. action is
available in the second pane.
Generally speaking, if an Applescript could be used as an action in
QS, but instead is brought into the first pane, it will be treated
this way.
For the original poster, try just typing text into the first pane (in
text mode), and then bringing up your action in the second pane. Also,
make sure your script uses the proper code for processing text:
using terms from application "Quicksilver"
on process text inputText
--Do things with inputText
end process text
end using terms from
On Nov 26, 11:29 am, Howard Melman <[EMAIL PROTECTED]> wrote:
> Huh, I don't think I knew of the Process Text action. I see it on B54
> on 10.5.5. What does it do?
>
> It comes from the Core Support plugin builtin to Quicksilver, not the
> Text Manipulation action.
>
> It seemed to work for me with Tweet.scpt in the first pane and the
> Process Text... action and text in the second.
>
> According to the Info.plist it should work on 'osas', scpt, and
> applescript file types. Is your script is compiled?
>
> Howard
>
> On Nov 24, 2008, at 5:46 AM, andrewheiss wrote:
>
> > I have a script located in ~/Library/Application Support/Quicksilver/
> > Actions that pipes text that I input to Twitter. I had a trigger set
> > to process the text and everything worked great.
>
> > Today, however, the "Process Text" action isn't even available
> > anymore. I have the text manipulation plugin installed, but now
> > whenever I select the script and tab over, Process Text isn't given as
> > an option.
>
> > What should I do to get it reenabled for .scpt files?