Keyboard shortcut for Taskbar's Address Toolbar


  1. Posts : 1
    Windows 7 Ultimate x64
       #1

    Keyboard shortcut for Taskbar's Address Toolbar


    I'm trying to find out if there is a keyboard shortcut to move focus to the Address toolbar when it is added to the taskbar. (Again, this is the address bar in the taskbar, not the address bar in an explorer or browser window for which ALT+D is the shortcut.) I've searched Microsoft's list of Keyboard shortcuts, but did not find any information. And my Google searches have not found anything.

    Any help would be appreciated.

    Thanks.
      My Computer


  2. Posts : 1
    Windows 7 Ult 32bit
       #2

    Windows 7 Address Bar Shortcut


    I know this post is old but I was going crazy looking for this same deal, what I ended up doing was downloading autohotkey and writing a script that assigned one of my function keys (F1) to set the focus to the address bar.

    F1::ControlFocus,ComboBox1,ahk_class Shell_TrayWnd

    then i compiled the script and put it in my startup.

    Hope this helps
      My Computer


  3. Posts : 1
    Windows 7 x64 Professional
       #3

    uidzero said:
    I know this post is old but I was going crazy looking for this same deal, what I ended up doing was downloading autohotkey and writing a script that assigned one of my function keys (F1) to set the focus to the address bar.

    F1::ControlFocus,ComboBox1,ahk_class Shell_TrayWnd

    then i compiled the script and put it in my startup.

    Hope this helps
    Funnily enough I was trying to do this every thing the other day and was just having a looking to see if there was a better way I'd found both ComboBox1 and ahk_class Shell_TrayWnd parts but wasn't too sure on how to use them. I eventually settled with send keys [Win] B followed by [Shift] + [Tab]. However, I wanted to use the windows key and don't like having to use send keys. They only problem I found which may be my system is that your above code seems to highlight the address textbox but it won't actually let me type. Did you have the same issue? if so how did you get passed that?
      My Computer


  4. DPT
    Posts : 1
    Windows 7 Professional - 64 bit
       #4

    I Know this thread is old, but I think this is a relevant addition...


    uidzero said:
    ... The only problem I found which may be my system is that your above code seems to highlight the address textbox but it won't actually let me type. Did you have the same issue? if so how did you get passed that?
    Certain applications will retain keyboard focus (a search bar for instance). The work around I used was to send {Esc} followed by {LWin}, then wait 20 ms to allow focus, then {Esc} again. The first {Esc} dislodges any control focus like an address bar, {LWin} and waiting 20 ms brings focus away from any window, and the last {Esc} closes the Windows menu from {LWin}. For me, this puts the toolbar address textbox into edit mode.

    F2::
    SendInput {Esc}
    SendInput {LWin}
    sleep 20
    SendInput {Esc}
    ControlFocus,ComboBox1,ahk_class Shell_TrayWnd
    Last edited by DPT; 20 Oct 2016 at 08:42.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 11:40.
Find Us