feature request: Favorites hierarchy

Features wanted...
Post Reply
xyplorerköln
Posts: 177
Joined: 01 Jan 2016 18:59

feature request: Favorites hierarchy

Post by xyplorerköln »

One big list of Favorites is not enough to handle all the work I do as a consultant for various companies.

I’d like to be able to nest these in folders of infinite hierarchy, preferably.

I recognize that this might already be possible with the existing software and I'm just missing it; if so, please point me in the right direction.

GerryB

Re: feature request: Favorites hierarchy

Post by GerryB »

xyplorerköln wrote:I’d like to be able to nest these in folders of infinite hierarchy, preferably.

I recognize that this might already be possible with the existing software and I'm just missing it; if so, please point me in the right direction.
I think that was brought up in another thread. Probably what you need is similar to the folding behavior of items in the bookmarks menus of most browsers. The items can be dragged and dropped, as well.

I don't have so many folders that the favorites list needs to be scrolled, but for subfolders what I do is insert three spaces to the left of the favorite name to indent it, plus a hyphen, so that it looks like a bullet.

xyplorerköln
Posts: 177
Joined: 01 Jan 2016 18:59

Re: feature request: Favorites hierarchy

Post by xyplorerköln »

Thanks, GerryB - that's great advice.

After looking at the Catalog and reading the admin reply here:
http://www.xyplorer.com/xyfc/viewtopic. ... 30#p133382
it seems that it is easier/more powerful to just use the Catalog vs. messing with Favorites, generally.

However, it looks like with Catalog, there's only one level of nesting (Category > Items). Is there a way to achieve (or a planned feature for) multiple levels of hierarchy?

binocular222
Posts: 1419
Joined: 04 Nov 2008 05:35
Location: Win11, Win10, 100% Scaling

Re: feature request: Favorites hierarchy

Post by binocular222 »

No, Custom-multi-level menu is not supported.
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

LittleBiG
Posts: 1848
Joined: 08 Apr 2011 12:57
Location: Win10x64

Re: feature request: Favorites hierarchy

Post by LittleBiG »

xyplorerköln wrote:One big list of Favorites is not enough to handle all the work I do as a consultant for various companies.

I’d like to be able to nest these in folders of infinite hierarchy, preferably.

I recognize that this might already be possible with the existing software and I'm just missing it; if so, please point me in the right direction.
You can find solutions here: http://www.xyplorer.com/xyfc/viewtopic.php?f=5&t=6219

xyplorerköln
Posts: 177
Joined: 01 Jan 2016 18:59

Re: feature request: Favorites hierarchy

Post by xyplorerköln »

Thank you, binocular222 and LittleBiG.

I think I'd like to let my request stand: I'd like to see infinite hierarchy for Favorites and/or Catalog Items manageable through the XYplorer GUI (without having to manually enter hacks to make the hierarchy work).

xyplorerköln
Posts: 177
Joined: 01 Jan 2016 18:59

Re: feature request: Favorites hierarchy

Post by xyplorerköln »

Any additional thoughts on this from the developer?

Filehero
Posts: 2713
Joined: 27 Feb 2012 18:50
Location: Windows 11@100%

Re: feature request: Favorites hierarchy

Post by Filehero »

My additional thoughts: +1

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

Re: feature request: Favorites hierarchy

Post by admin »

Nothing planned ATM. But I hear the demand. Eventually I will work something out.

fogg
Posts: 32
Joined: 15 Jul 2014 16:13
Location: Going around the World

Re: feature request: Favorites hierarchy

Post by fogg »

I will also like to see this function! :o
s404:signature not found.

MBaas
Posts: 654
Joined: 15 Feb 2016 21:08

Re: feature request: Favorites hierarchy

Post by MBaas »

+1 :-)
_________________________________________________
Happy user with Screen scaling 100% and W11Pro 24H2 ;-)

n2tpa
Posts: 61
Joined: 06 Aug 2011 16:40

Re: feature request: Favorites hierarchy

Post by n2tpa »

Another use for nested categories is the use of tag groups. I've just made 5, and could add more, but they take up a lot of room on the catalog. Since they're considered categories themselves, I can't put them in a category to hide them within. Nested categories would be the perfect solution to allow me to make many tag groups, but hide them when not needed.

Bill

LittleBiG
Posts: 1848
Joined: 08 Apr 2011 12:57
Location: Win10x64

Re: feature request: Favorites hierarchy

Post by LittleBiG »

I have a solution which I use for a while, I have just created a code for it.

First set up a button with a name like "Create a FavGroup" and an icon. Then paste the code below into the left click part:

Code: Select all

//create a new favgroup
  $icon = ctbicon();
  $group_name = input("FavGroups","The name of the new FavGroup:");
  $str = '"' . recase($group_name,"u") . '"' . <crlf> . <<<'EOD'
//end
"-"
"Add current folder or selected file" ::focus "L"; writefile(self("file"),replace(readfile(self("file")),'//'.'end','"' . <curbase> == "" ? <curfolder> : <curbase> . '" ' . <curitem> == "" ? <curpath> : <curitem> . <crlf> . '//'.'end'),"o")
"Manage this group" ::open self("file")
"Close" ::break
EOD;
  writefile("<xyscripts>\MyFavGroups\Fav_" . recase($group_name,"t") . ".xys", $str,,"tu");
  $fav_entry = '"' . recase($group_name,"u") . '...|' . $icon . '" ::load "<xyscripts>\MyFavGroups\Fav_' . recase($group_name,"t") . '"';
  copytext $fav_entry;
  msg "The necessary entry has been copied to the clipboard.<crlf>Create a new line in Favorite Folders, and paste it there. (Press Ctrl+V)";
  #612;
For the fastest access, I have the Favorite Folders set to the click on white of the tree.

How to use the created button:
1. Click on the "Create a FavGroup" toolbar button.
2. Type the name of the desired group.
3. In the background, a file will be created in the "<xyscripts>\MyFavGroups" folder to store the favorites of that group.
4. The script creates the necessary entry, copies it to the clipboard, then opens the Favorite Folders.
5. You have to create a New entry manually and paste the content of the clipboard by pressing ctrl+v.

6. "Add current folder or selected file" means if no file selected the current folder will be added to the group.
7. "Manage this group" opens the text file in the default text editor for manual edit like changing the order of the entries.

The 4 and 5 is needed because there is no access to favorites by scripting :-(

sTu_Deimus
Posts: 41
Joined: 01 Mar 2008 17:51
Location: Melbourne, Australia
Contact:

Re: feature request: Favorites hierarchy

Post by sTu_Deimus »

+1 for the proper solution...

LittleBiG
Posts: 1848
Joined: 08 Apr 2011 12:57
Location: Win10x64

Re: feature request: Favorites hierarchy

Post by LittleBiG »

sTu_Deimus wrote:+1 for the proper solution...
Hehe, your decision to wait for the "proper" solution or to use a non-proper one (there are a few created by forum members) during the waiting.

Post Reply