views:

159

answers:

4

I'm using AutoHotKey which is a program that lets me define my own hot keys. I have a hot key to open a link in IE. When I run the hot key command again the same window opens in the same browswer. I would like it to open in a new browser.

I'm using "Run www.google.com", for example.

Thanks.

A: 

Try
explorer http://www.google.com

Matthias Wandel
no go. I'm pretty sure that its the same as e www.google.com
Brad8118
I tested it on my system before I posted it. Maybe your explorer is configured to not open stuff in a new window? In which case, why override user preferences?
Matthias Wandel
I have multi desktops setup and if I have IE open in a different desktop the page opens in that desktop and I can't see it.
Brad8118
A: 

Which IE?

iexplore -nomerge http://example.com

Will typically work for IE8.

EricLaw -MSFT-
I'll try this when I get to work on Monday thanks
Brad8118
Tried but didn't work. -nomerge is now -noframemerging
Brad8118
Both of these do the same thing. What does "didn't work" mean? Are you using IE8?
EricLaw -MSFT-
A: 

Tools -> Internet Options -> [Tabs] Settings -> Open links from other programs in: [Select] A new window.

jeffamaphone
I saw this, but I want IE to work the same generally except when I use the hot key. Thanks though
Brad8118
A: 

got it:

iexplore.exe -noframemerging www.google.com

Brad8118