Opening URLs in Moz Firefox

Does anyone else have problems sending commands to a running instance of Mozilla Firefox?
I want Thunderbird to open links in new Firefox tabs but the following command fails:

$ mozilla -remote "openurl(http://www.mozilla.org, new-tab)"
Failed to send command.
$

If I don’t include a URL then a dialog pops up asking for one but that’s hardly what I want to happen. Google hasn’t been too helpful, but maybe someone reading this has come across this already!


1 Comment

jab (1 comments.) on October 1, 2004 at 4:00 am.

This script seems to work nicely for me.


#!/bin/sh
export MOZILLA_FIVE_HOME="/usr/lib/MozillaFirefox/"

url="$1"
if [ "x$url" = "x" ]; then
url="about:blank"
fi

if $MOZILLA_FIVE_HOME/mozilla-xremote-client openURL\("$url",new-tab\); then
exit 0
fi
exec $MOZILLA_FIVE_HOME/firefox "$url"

The only problem I have is that it opens a locally cached copy (file://cache.file.name) instead of the actual URL. This is annoying because any links that aren’t absolutely linked don’t work. I’m still searching for an answer to that one.

Reply

Leave Your Comment

Your email will not be published or shared. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>


Holy Shmoly! is Stephen Fry proof thanks to caching by WP Super Cache