Ok, finally figured it out. 

As an AppleScript newbie, I thought the scripts needed to be executed as 
text because they did not compile at first for me due to a mistake which 
led me to believe that these applescripts for quicksilver were not usual 
applescripts but some sort of handler that the tools would not directly 
compile. 

So, solution for any other newbies is to go to "File->Save as..." with the 
"script" option selected on the next dialog. If it gives an error, then it 
is not compiling and will not save. 

The template provided on the qsapp.com 
site: http://qsapp.com/wiki/AppleScript_Action_template
will not compile as is. One must add opening scope of "using terms from 
application "Quicksilver"" at the top of the template, and at the end, "end 
using terms from".

Cheers

On Friday, February 10, 2012 3:30:53 PM UTC, bgarlock wrote:
>
> Running B64(3915), and I put the following AppleScript in ~/Library/ 
> Application Support/Quicksilver/Actions/Add to Tracks.scpt (added 
> XXXXXX for my username/api token) 
>
> {code} 
> using terms from application "Quicksilver" 
>         on process text ThisClipping 
>
>                 set myUsername to "XXXXXX" 
>                 set myToken to "XXXXXX" 
>                 set myContextID to 5 (* @Computer *) 
>
>                 tell application "
> http://garlockprintingtracks.tklapp.com/backend/ 
> api" 
>                         set returnValue to call xmlrpc {method 
> name:"NewTodo", parameters: 
> {myUsername, myToken, myContextID, ThisClipping}} 
>                 end tell 
>                 tell application "Quicksilver" 
>                         show notification "Tracks: action added." 
>                 end tell 
>         end process text 
> end using terms from 
> {code} 
>
>
>
> And when I try to use that AppleScript action, nothing happens and I 
> just get this in the console log: 
>
>
> 2/10/12 10:26:14.452 AM Quicksilver: AppleScript Action: No handler? 
> Aborting... 
>
>
>
> Any ideas how I can further troubleshoot this? 
>
> Many thanks, 
>
> Bruce 
>
>
>

-- You received this message because you are subscribed to the Google Groups 
Quicksilver group. To post to this group, send email to 
[email protected]. To unsubscribe from this group, send 
email to [email protected]. For more options, 
visit this group at 
https://groups.google.com/d/forum/blacktree-quicksilver?hl=en

Reply via email to