Opening Quicksilver with process text intact

I’ve been trying to open Quicksilver with a string I’ve got saved as it’s process text. I would have posted this at the blacktree forums, but they seem to be broken when you’re logged in.

Anyway, here’s what I’ve got.

The string is called tweet if you didn’t guess…

				
tell application "Quicksilver"
					
open window
set process text to tweet
					
end tell

::disclaimer - I ahve never scripted QuickSilver before::

That said process text is a command that you can set a variable to it’s result… you don’t actually set it itself, so try something like this???

tell application "Quicksilver"
	open window
	process text "Tweet"
end tell

Thanks for the attempt, but it didn’t work.

Well can you explain what you are actually trying to do? Perhaps armed with that one of us could help further =)

It doesn’t matter, I sorted it!

set selection of application "Quicksilver" to tweet

Thanks for the help though. This forum has already helped me over the past few days already. Turns out applescript is loads easier than I thought!