Could we have a way to go to the Address Bar? CTRL+L anyone?

Features wanted...
Post Reply
vegard
Posts: 76
Joined: 31 Jan 2010 15:45
Location: Sandnes, Norway

Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by vegard »

Hi, I've looked through the documentation and there is nothing there, I've read through all the customize shortcuts and there is nothing there, I've searched through the forum and I find lots of people not being quite satisfied with a number of things including how xyplorer does things in its own, non-standard way and then there are some autohotkey-scripts which attempts to fix xyplorer.

There reason I need to go to the address bar is so that I can copy and paste the address into explorer since xyplorer doesn't register context-menu entries and so I can't use it with any of my installed programs such as unpacking a zipped file by right-clicking and stuff.

Please send help.

Jibz
Posts: 123
Joined: 15 Jun 2010 16:30

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by Jibz »

Tab/F6?

Stefan
Posts: 1360
Joined: 18 Nov 2008 21:47
Location: Europe

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by Stefan »

Ctrl+Alt+a

Tools > Customize Keyboard Shortcuts... > Misc > Focus Functions > Focus Address Bar


.

vegard
Posts: 76
Joined: 31 Jan 2010 15:45
Location: Sandnes, Norway

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by vegard »

Thanks Stefan!

I fixed it with Autohotkey, since I use CTRL+L more often to go to the address bar rather than locking a tab.

Code: Select all

; XYplorer
; Use CTRL+L to send CTRL+ALT+A to focus address bar
#IfWinActive ahk_class ThunderRT6FormDC
^l::^!a

; Use ALT+L to lock tab
#IfWinActive ahk_class ThunderRT6FormDC
!l::^l

calude
Posts: 355
Joined: 13 Aug 2008 10:16
Location: Switzerland
Contact:

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by calude »

Why not remove Control+L from its assigned function in tools/customize keyboard shotcuts
and reassign Control+L to your "go to the address bar "
way simpler that a script

Calude

vegard
Posts: 76
Joined: 31 Jan 2010 15:45
Location: Sandnes, Norway

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by vegard »

The advantage of using Autohotkey to flay idiosyncratic, misbehaving programs into submission is that all your customizations are portable.

As opposed to having to enter these again and again, for each computer or reinstall.

This way you can also share them with for example dropbox.

Case in point, even though I tried my best to find out how to do this in XYplorer, there were so many - and unsearchable - options, that I just couldn't see how to do it.

Now, I have this customization documented in a single file, together with all the other customizations I use.

Calude

Pagat
Posts: 309
Joined: 09 Oct 2007 21:23
Location: Austria

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by Pagat »

vegard wrote:The advantage of using Autohotkey to flay idiosyncratic, misbehaving programs into submission is that all your customizations are portable.
but XYplorers customizations are portable on its own :? well... whatever floats your boat...
OS: Windows 11, 64-bit, Version 25H2, Build 26200.8655 (10.0), AMD64
Monitor: 1/2 (Primary) Primary Screen DPI: 96 (100%)

vegard
Posts: 76
Joined: 31 Jan 2010 15:45
Location: Sandnes, Norway

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by vegard »

Yes, I'm sure.

And so are the customizations for many, many other programs.

Each separately portable, easily found in dozens of different locations.

And some which are not.

By which having a single file for my customizations, avoids having to hunt down, figure out, setup, etc.

And I can also instantly disable all customizations by stopping autohotkey, should I or other users have the need for that.

My boat is non-soluble in water.

admin
Site Admin
Posts: 66358
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by admin »

vegard wrote:Case in point, even though I tried my best to find out how to do this in XYplorer, there were so many - and unsearchable - options, that I just couldn't see how to do it.
Here is one way you probably have not tried:
1) Menu Help > Make List of Functions...
2) Paste list into editor
3) Search for "Address Bar" or "Focus"
4) You would have found the command within 20 seconds. :)

vegard
Posts: 76
Joined: 31 Jan 2010 15:45
Location: Sandnes, Norway

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by vegard »

I could, but that would required me to know beforehand that "Make list of functions" has something to do with "Customizable shortcuts".

I associate "functions" in this context with "scripting", not "commands" that can be executed by shortcuts or menu-choices, so that is not intuitive to me.

If on the other hand there was a small search-field in the "customize keyboard shortcuts" dialog, where I could search for "address", then I could have found every customizable shortcut that could be associated with "address bar" and I would have seen...

... seriously duder, you're not telling me to export a list of functions for your program to a text-file and then plough through that?

I guess you are.

Anyway, that's just great, but I suggest filtering available shortcuts on a textstring would be easier and more intuitive.

admin
Site Admin
Posts: 66358
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Could we have a way to go to the Address Bar? CTRL+L anyone?

Post by admin »

vegard wrote:I could, but that would required me to know beforehand that "Make list of functions" has something to do with "Customizable shortcuts".

I associate "functions" in this context with "scripting", not "commands" that can be executed by shortcuts or menu-choices, so that is not intuitive to me.
You are right! I currently cannot tell you why I chose "functions" instead of "commands". I think I will change it...

Search interface: maybe later.

Post Reply