"Recent Locations" a little hard on the eyes

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
aurumdigitus
Posts: 1075
Joined: 30 May 2008 21:02
Location: Lake Erie

"Recent Locations" a little hard on the eyes

Post by aurumdigitus »

Using the toolbar button for Recent Locations can the Drop-down List be adjusted so that it shows merely the file name and not the entire path?

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

Re: "Recent Locations" a little hard on the eyes

Post by nas8e9 »

aurumdigitus wrote: 31 Jul 2019 17:19 Using the toolbar button for Recent Locations can the Drop-down List be adjusted so that it shows merely the file name and not the entire path?
I'm confused: I can't find a way to have recent locations remember files?

Do you perhaps mean the last part of a path (e.g. folder1 instead of C:\Users\Username\Desktop\folder1)?

aurumdigitus
Posts: 1075
Joined: 30 May 2008 21:02
Location: Lake Erie

Re: "Recent Locations" a little hard on the eyes

Post by aurumdigitus »

My question was poorly formed and am sorry to those readers that may have been subsequently confused.

You analysis was entirely correct!
Do you perhaps mean the last part of a path (e.g. folder1 instead of C:\Users\Username\Desktop\folder1)?
This is exactly and precisely the desired result. :appl:

This approach may not sit well with some but makes sense to me.

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

Re: "Recent Locations" a little hard on the eyes

Post by admin »

Would not work for me (I quite often have same-named last components in different locations). But I'm curious about others...

Annother option might be to have the last component first followed by the full path:

malcheck - E:\Test\b\Pluto\malcheck

jupe
Posts: 2800
Joined: 20 Oct 2017 21:14
Location: Win10 22H2 120dpi

Re: "Recent Locations" a little hard on the eyes

Post by jupe »

My opinion is that it is more user-friendly if left as it is currently, also the request is something that is already possible via scripting.

For example here is a quick crude example if the OP wanted to improve it for use:

Code: Select all

	$menu = "";
	foreach($line,  <get list_recentlocations |>) {
		$menu .= gpc($line, "name") . "|$line|$line<crlf>"; }
	$loc = popupmenu($menu, 7:="|");
	if ($loc) { goto $loc; }

aurumdigitus
Posts: 1075
Joined: 30 May 2008 21:02
Location: Lake Erie

Re: "Recent Locations" a little hard on the eyes

Post by aurumdigitus »

malcheck - E:\Test\b\Pluto\malcheck
This approach would answer the request very nicely. And to keep everyone satisfied maybe give it an on/off option. :biggrin:

Post Reply