Rob,

Thanks for the explanation. I actually got my use case working with 
Applescript and a Run trigger. The full explanation for completeness was 
that I wanted to create a trigger to open Chrome with a New Tab and Chrome 
with an incognito window for GMail. The two scripts I ended up with follow:

tell application "Google Chrome"
    tell window 1 to make new tab with properties 
{URL:"http://www.google.com/"}
    activate
end tell

and

tell application "Google Chrome"
    make new window with properties {mode:"incognito"}
    set URL of (active tab of window 1) to "https://mail.google.com";
    activate
end tell

So I ended up not needing the full menu bar items functionality in the end.

Thanks again,
Scott

On Saturday, February 15, 2014 5:00:52 PM UTC-5, Rob McBroom wrote:
>
> On 15 Feb 2014, at 10:06, SAW wrote:
>
> When I set a Menu Bar Items ... command to trigger a menu bar option, such 
> as New Tab from Chrome, and set a shortcut key for it, everything works 
> fine. When I restart Quicksilver, it forgets the trigger and no longer 
> seems to do anything when I click the previously assigned shortcut.
>
> A very old problem, but I’m not sure how well known it is.
>
> As a general rule, triggers can only be used on things in the catalog. 
> That is, things that can be accessed by searching in the first pane. The 
> exception is anything that Quicksilver can figure out just by looking at a 
> string (files, URLs, e-mail addresses, AppleScript, JavaScript, and text).
>
> I haven’t tested this, but the situation might be “improved” in the next 
> release of Quicksilver. By that, I mean the trigger won’t work *before*you 
> restart either. Not ideal, but at least more consistent and less 
> surprising.
>
> -- 
> Rob McBroom
> http://www.skurfer.com/
>

-- 
You received this message because you are subscribed to the Google Groups 
"Quicksilver" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/blacktree-quicksilver.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to