Re: New Tabs from Email Links
Mark Scarborough <[email protected]>
| Newsgroups | gmane.comp.mozilla.multizilla |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 04 Sep 2003 17:13:33 -0400, "Khoi Vinh" <[email protected] m> wrote: > With Multizilla installed, I'd like to be able to click on links I find > in emails, Word docs etc. and open up *new* tabs. > > Right now when I do that, the link opens up in a pre-existing tab. This is easy to do if you can control the command line that your mailer uses when sending links to Mozilla. Usually you will see a command similar to this: mozilla [-noraise] -remote openURL($xuri) where "$xuri" is whatever variable your mailer uses to send the URL to mozilla. If you can change this command to: mozilla [-noraise] -remote openURL($xuri,new-tab) then mozilla will open a new tab for the link. This is independent of MultiZilla - it's a straight mozilla feature. (The "[-noraise]" is optional and causes mozilla to stay in the background instead of popping forward. That's the way _I_ like it...) Mark This information can be found at <http://www.mozilla.org/unix/remote.html>