Hi there,

For this, I suggest you create an AppleScript. The 'Menu Bar...' option you
speak of is part of the User Interface Plugin, but this will only work when
Firefox is running.

Here's an example AppleScript. There is definitely a more elegant way of
opening a new window in Firefox

tell application "System Events"
set firefoxActive to (name of processes) contains "Firefox"
 if firefoxActive then
tell process "Firefox"
activate
 tell menu bar 1 to tell menu bar item 3 to tell menu 1 to click menu item 2
end tell
 else
tell application "Firefox" to open
end if
end tell

Save this as something like 'Open New Firefox Window' in ~/Library/Scripts,
then create a new trigger for "Open New Firefox Window ⇥ Run"

On 25 October 2012 12:26, Todd Davidson <[email protected]> wrote:

> Hello - I would like to turn Ctrl-Shift-C into a shortcut that creates a
> new Firefox window regardless of whether FF is running, active, etc. All
> the advice (which admittedly, only seems to apply up to b54, whereas I'm on
> b70 with 10.8) I've been able to find through searching suggests this is
> quite easy to do through the 'Menu Bar...' option in the second box, but
> this doesn't seem to exist! Could anyone help with either issue? Many
> thanks.
>
> --
> 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].
> Visit this group at
> http://groups.google.com/group/blacktree-quicksilver?hl=en.
>
>
>

-- 
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].
Visit this group at http://groups.google.com/group/blacktree-quicksilver?hl=en.


Reply via email to