Newbie Questions

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
voon
Posts: 2
Joined: 03 Jun 2012 04:17

Newbie Questions

Post by voon »

Trying out XYplorer, used xplorer2 Lite so far. I like XYplorer so far quite well, but there's a few things bugging me a lot:

- The pane coloring ... I'd like it to be as simple as in xplorer2 ... the active pane has a completely gray background ... I don't want it to only color the active column in the pane. How can I achieve that?

- Path clicking ... can the full, absolute path be made clickable somehow to jump to directories inside the path? I.e. in a path U//V/W/X/Y/Z I'd like to click on W to end up there.

- "back" button on the mouse should bring me back one level in the directory tree.

Both may be available .. I'm trying to understand all options at the moment .. but have failed with my coloring attempts so far :)

nas8e9
Posts: 2232
Joined: 21 Jun 2008 14:50

Re: Newbie Questions

Post by nas8e9 »

Hi and welcome,
voon wrote:- The pane coloring ... I'd like it to be as simple as in xplorer2 ... the active pane has a completely gray background ... I don't want it to only color the active column in the pane. How can I achieve that?
I recently tried that myself and for some reason I can't get changes to Configuration > Colors & Styles > Other > Inactive pane, to take. The developer or other forum members should have more information.
voon wrote:- Path clicking ... can the full, absolute path be made clickable somehow to jump to directories inside the path? I.e. in a path U//V/W/X/Y/Z I'd like to click on W to end up there.
This is a frequently requested feature that so far hasn't made the roadmap. By the way, it is appreciated if you search the forum first so that existing threads can provide an answer or an opportunity to keep discussions contained to a single thread.
voon wrote:- "back" button on the mouse should bring me back one level in the directory tree.
This is currently not possible but should be enabled once the roadmap item Custom Event Actions (CEA) is implemented.

serendipity
Posts: 3360
Joined: 07 May 2007 18:14
Location: NJ/NY

Re: Newbie Questions

Post by serendipity »

Hi and Welcome!
voon wrote:- The pane coloring ... I'd like it to be as simple as in xplorer2 ... the active pane has a completely gray background ... I don't want it to only color the active column in the pane. How can I achieve that?
I don't know how it is in xplorer2, but here are the relevant places to make changes.
Assuming that you want everything white: go to Tools>Configuration>Colors & Style>List>Sorted column> set it to white. If you want do the same for all modes (Browse, Find etc) in List dropdown menu.
Next, set Inactive pane to also white.
voon wrote:- Path clicking ... can the full, absolute path be made clickable somehow to jump to directories inside the path? I.e. in a path U//V/W/X/Y/Z I'd like to click on W to end up there.
Win7 type breadcrumb has been requested before, not sure if XY will get it, but something similar can be done. Right-click on Address bar's down arrow and you'll see relevant paths for your current folder. Similarly, on the tab right-click on the icon to get relevant paths.
voon wrote:- "back" button on the mouse should bring me back one level in the directory tree.
I am not sure if this is a XY related question, maybe you can configure your mouse back button to backspace?
Also interesting for you maybe simply double-click in list's empty space you will be taken one level up.
Relevant setting is: Tools>Configuration>Extended>Mouse>Double-click on empty space goes up. This is already enabled by default.

highend
Posts: 14955
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Newbie Questions

Post by highend »

I am not sure if this is a XY related question, maybe you can configure your mouse back button to backspace?
Also interesting for you maybe simply double-click in list's empty space you will be taken one level up.
Relevant setting is: Tools>Configuration>Extended>Mouse>Double-click on empty space goes up.
If your back button is either the fourth or the fifth button of your mouse you can use XMouseButtonControl
to achieve what you want.

The appropriate setting is called "Simulated Keys" and you have to use "{BACKSPACE}" there.

http://www.highrez.co.uk/downloads/XMou ... ontrol.htm
One of my scripts helped you out? Please donate via Paypal

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

Re: Newbie Questions

Post by admin »

voon wrote:- The pane coloring ... I'd like it to be as simple as in xplorer2 ... the active pane has a completely gray background ... I don't want it to only color the active column in the pane. How can I achieve that?
You cannot but I like the idea. In the next version if "Configuration | Dual Pane | Shade inactive pane" is ticked then the inactive pane will not color the active column anymore.

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

Re: Newbie Questions

Post by admin »

nas8e9 wrote:Hi and welcome,
voon wrote:- The pane coloring ... I'd like it to be as simple as in xplorer2 ... the active pane has a completely gray background ... I don't want it to only color the active column in the pane. How can I achieve that?
I recently tried that myself and for some reason I can't get changes to Configuration > Colors & Styles > Other > Inactive pane, to take. The developer or other forum members should have more information.
"Configuration | Dual Pane | Shade inactive pane" should be ticked.

PS: maybe I should move that one color interface "Inactive Pane" to Configuration | Dual Pane ...

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

Re: Newbie Questions

Post by admin »

voon wrote:- "back" button on the mouse should bring me back one level in the directory tree.
It does not do so by default but you can easily tweak it (manually modify the INI file -- see How to tweak):

Code: Select all

    + Tweak to customize the action on Mouse Back Button:
        [Settings]
        CEA_MouseBack=0
      You can choose between the following values/actions:
        0 = Go Back [Default]
        1 = Go Up
    + Tweak to customize the action on Mouse Forward Button:
        [Settings]
        CEA_MouseForward=0
      You can choose between the following values/actions:
        0 = Go Forward [Default]
        1 = Go Down
So you would set this to achieve what you want:

Code: Select all

CEA_MouseBack=1

voon
Posts: 2
Joined: 03 Jun 2012 04:17

Re: Newbie Questions

Post by voon »

Thanks very much for all the answers! The mouse tweak works just like I'd like it to and the colors are being addressed, nice (i find the column coloring very confusing :) ). What's the contra to bread crumbs? Is it hard to implement? That's one of the best features in WIn7 file management I thought. But motivated now to continue the evaluation.

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

Re: Newbie Questions

Post by admin »

voon wrote:What's the contra to bread crumbs? Is it hard to implement? That's one of the best features in WIn7 file management I thought. But motivated now to continue the evaluation.
Well, one of the initial reasons not to do clickable bread crumbs is that I always had the impression that xplorer2 invented this cool idea. At least I saw it there first. Now, as Win7 has it, too (inspired by xplorer2?), it's kind of common domain. But there are other reasons, e.g. it's not that easy to do without adding addtional elements to the interface, and I do not want to add headers to each of the panes.

Post Reply