Page 1 of 1

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

Posted: 14 Feb 2019 02:13
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 553 times

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

Posted: 14 Feb 2019 03:22
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).

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

Posted: 14 Feb 2019 14:04
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!