Click to See Complete Forum and Search --> : can't open new firebird window


DyDx
10-27-2003, 08:30 AM
when download manager is open... if I run my Firebird shortcut again (which points to /usr/local/MozillaFirebird/MozillaFirebird) it says the "default" profile is already in use and won't let me open a new window w/ it. Since I hate having multiple profile's for no reason, what is a way around this?

JamminJoeyB
10-27-2003, 08:39 AM
This has been asked here a couple of times. As a wise man once said seek and you shall find.


Just a suggestion, have you tried tabs? My favorite feature about mozilla.

micio
10-27-2003, 09:37 AM
JamminJoeyB is right: many other asked, but I found no *answers*, so I did a search for myself and I found the code below: warning, I don't know if it works since I haven't tryed it but the idea is clear:


#!/bin/sh
# author - David Patton
# seriously modified by - Carlos Urbieta Cabrera <cucnews at yahoo dot com>
# reworked by - Carlos Urbieta Cabrera <cucnews at yahoo dot com> again ;)
# THIS SOFTWARE HAS THE GPL LICENSE, IF YOU USE THIS SOFTWARE, YOU ARE
# AGREEING TO ITS LICENSE“S TERMS, SO AT LEAST READ IT! 8D
# http://www.gnu.org/licenses/licenses.html#TOCGPL
#***
# Configurarion starts here
# Where is phoenix?
PHOENIX=/usr/lib/mozilla-firebird/MozillaFirebird

# Default URL when not set at command line?
DEFAULT=""

# Configurarion stops here
#***
URL="$@"
if [ "$URL" = "" ]; then
URL="$DEFAULT"
fi

$PHOENIX -remote "ping()"
# $? = false if running, true if not
if [ $? = 0 ] ; then
# 'new-tab' also exists, but it
# will not bring the browser
# ontop, so its not that fun.
# People may not realize that
# there is a new tab on their
# current browser 8) -Carlos
$PHOENIX -remote openURL"($URL,new-window)"
else
$PHOENIX $URL
fi

exit

jme
10-27-2003, 01:59 PM
From JL:

http://justlinux.com/forum/showthread.php?s=&threadid=104893&highlight=firebird+multiple+windows