Is there a shortcut or script that pop-up Breadcrumb menu?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
cadu
Posts: 287
Joined: 18 Mar 2012 21:50

Is there a shortcut or script that pop-up Breadcrumb menu?

Post by cadu »

Hi,

I'd appreciate your help

Is there a keyboard shortcut or script that pop-up Breadcrumb menu?

Thanks!
2019-02-13_23-10.png
2019-02-13_23-10.png (38.37 KiB) Viewed 554 times

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

Re: Is there a shortcut or script that pop-up Breadcrumb menu?

Post by jupe »

No, but you can just duplicate the text you have in your customize BC dialog, and call it with popupmenu() since they use the same syntax, then assign any key you want via UDC.

https://www.xyplorer.com/highlights.php#udc

below is a quick example of the script you would need, if you decided to put the text in an external file (alternatively use heredoc):

Code: Select all

	popupmenu(readfile("<xyscripts>\Breadcrumb.txt"));
you could also read the text directly from the XYplorer.ini if you really wanted to script that yourself (although the ini key is duplicated so more scripting than usually necessary would be involved).

cadu
Posts: 287
Joined: 18 Mar 2012 21:50

Re: Is there a shortcut or script that pop-up Breadcrumb menu?

Post by cadu »

jupe wrote: 14 Feb 2019 03:22 No, but you can just duplicate the text you have in your customize BC dialog, and call it with popupmenu() since they use the same syntax, then assign any key you want via UDC.

https://www.xyplorer.com/highlights.php#udc

below is a quick example of the script you would need, if you decided to put the text in an external file (alternatively use heredoc):

Code: Select all

	popupmenu(readfile("<xyscripts>\Breadcrumb.txt"));
you could also read the text directly from the XYplorer.ini if you really wanted to script that yourself (although the ini key is duplicated so more scripting than usually necessary would be involved).
Many thanks for the directions. It worked!

Post Reply