Windows Vista Magazine advert
Welcome, Guest. Please Sign in (or Register) Welcome,  (Profile | Log out)
Real-world guides, help, tips and buying advice from the Windows Vista community

IE7 Not-So-Shortcut

IE 7 Shortcut
By liebmh on 13 April 2007

I'm looking for an IE7 shortcut.  With previous IE versions (and this one) when I get an email with mltiple links, clicking on consecutive links will overwrite the current IE page with the contents from the new link.  I used to hit [CTRL]N to open a new window, minimize that window, click the new link (allowing the first window's page to be overwritten) and continue this for as many links as I needed.  I would like to take advantage of the tabs without using new windows ([CTRL]N).  With IE7, to get the desired results, I need to...

1.  Click the first link

2.  ALT-D (select tab's url)

3.  CTRL-C (copy tab's url)

4.  CTRL-T (open new tab)

5.  CTRL-V, ENTER (paste url in new tab and load)

6.  CTRL-1 (return to tab 1)

Now the next link click will open up a new link in a tab that's already been duplicated.  That's too much work, and my programmable keyboard won't handle this task.  Any MENSA candidates have any ideas?  Does anyone know if this shortcut already exists?  Does Microsoft have a "suggestion box"?  Thanks, Henry

Appreciate this article? If so please vote positively to help push it up the rankings Click once to push vote this item up the content rankings. This helps the community find good material, and your voting enables our systems automatically personalize your experience.

Comments


Just right click the link and select open in new tab.
14/04/07 | 05:19
 
I wish that worked and it was that easy!
16/04/07 | 02:12
 
Hey - this may be solved nowadays (I know the post is old) but I couldn't find out how either, so I quickly wrote this little autoit script. It's very thick and just emulates your keystrokes without the Ctrl 1, hence copies any tab you're on to a new tab. It may even need different timing for different speed PCs but best I could do in under 5 mins. Just compile and run - it sits in your systray waiting for a Shift-Ctrl-t to copy.

To close, right click the systray icon and exit.

;Walski's Shift Ctrl T operator for IE7 tabs
;Whatever tab you're in, Shift-Ctrl-t emulates the old Ctrl-N (but copies the current page to a new TAB!)
;This is a simple, dippyscript so run only when you need it for IE7 - a <5 minute quickfix script
;This will get sorted properly soon.........by a clever person


HotKeySet("+^t", "Keysequence") ;Shift-Ctrl-t
Opt("SendKeyDelay", 5) ;5 milliseconds
Opt("SendKeyDownDelay", 5) ;5 millisecond

While 1
Sleep(100);Get busy doing nothing.....
WEnd

Func Keysequence()
Send("!d")
Send("^c")
Send("^t")
sleep(1000);give it a chance.....
Send("!d")
Send("^v")
Send("{Enter}")
EndFunc

Windows 32bit executable available at www.davidwalpole.com/utils/copytab.exe
16/05/08 | 12:28
 

Leave a Comment:
Username: 
Password: 


   
Related posts...