Intial group of tabs/folders possible?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
Stabilizer
Posts: 19
Joined: 11 Jun 2008 19:16

Intial group of tabs/folders possible?

Post by Stabilizer »

From my search, it sounds like this can't be done but I will ask anyway

I use a set of 6 or 7 folders almost everyday
When I first open the tabs, they are all top level and easy to identify
Once I muck with them, the tabs show deeply nested subfolders that are hard to identify quickly so I end up opening new tabs to get back to the top

What I would like to do is:

1. start XYplorer each time with a group of folder tabs instead of one tab

2. once all the tab names are messy - drilled down 5 levels and I have finished my task, is close those folders and re-open them at the top level for easy identification and navigation

Can this be done?
Last edited by Stabilizer on 19 Jun 2008 17:25, edited 1 time in total.

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

Post by serendipity »

You can always have your frequently used 6-7 tabs set to homeand locked.
Update:
Oh ok, you want them to remain in homed position when you start XY. Not sure how to do that.
If the tab locations never change then maybe use a script ::goto "location1";#348;
or simply use ::#1018; #348; #1018; #348 ... several times. I know it looks stupid, but cant think of anything else right now.
Last edited by serendipity on 13 Jun 2008 21:29, edited 1 time in total.

jacky
XYwiki Master
Posts: 3106
Joined: 23 Aug 2005 22:25
Location: France
Contact:

Post by jacky »

Well, assuming that you use no other tabs than those tabs you mentioned (unless they're locked), you could just use a script that would close all other unlocked tabs, and then open new tabs to the desired locations.

Then running this script on startup, when your work is done or whenever you want will get you the five tabs on "initial" locations.

For example, something like this:

Code: Select all

 // Close All Other Unlocked Tabs
 #352;
 goto "c:\";
 // New Tab
 #340;
 goto "d:\";
 // New Tab
 #340;
 goto "e:\";
 // New Tab
 #340;
 goto "f:\";
 // New Tab
 #340;
 goto "g:\";
 seltab 1;
Then you can put this script in your Catalog, or on UDC and assign a KS to it!
Proud XYplorer Fanatic

Stabilizer
Posts: 19
Joined: 11 Jun 2008 19:16

Folder groups

Post by Stabilizer »

Locking the tabs does go along way to solving the problem. I have a collection of other tabs open as well but it would be fine to clear them to restore the starting tabs and then start opening new ones as required.

My goal is to increase the speed of locating files when a client calls so that I can have a sensible discussion. That is why I was asking about color coding the tabs - it makes locating a tab faster once you know the color. Right now I waste a lot of time mousing over tabs and navigating folders.

Thanks

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

Re: Folder groups

Post by admin »

Stabilizer wrote:Locking the tabs does go along way to solving the problem. I have a collection of other tabs open as well but it would be fine to clear them to restore the starting tabs and then start opening new ones as required.

My goal is to increase the speed of locating files when a client calls so that I can have a sensible discussion. That is why I was asking about color coding the tabs - it makes locating a tab faster once you know the color. Right now I waste a lot of time mousing over tabs and navigating folders.

Thanks
Have you tried to use the Catalog for navigation? You can color catalog items as you like...

Stabilizer
Posts: 19
Joined: 11 Jun 2008 19:16

Post by Stabilizer »

Yes the catalog does seem like a good approach for keeping project folders handy - especially since you can expand and contract the groups. The tab color coding is nice

avsfan
Posts: 554
Joined: 29 Jun 2006 09:00
Location: Fort Collins, Colorado

Post by avsfan »

I like the idea of using catalog groups -- would it be possible to use the groups in the catalog similar to a bookmark category in FireFox, i.e. with an "open in tabs" option? Then the user could right-click on the group and click "open in tabs" and have all sub-items opened in tabs in the listed order (closing all other open tabs).

Does this address the needs voiced in this thread? I think this could be a very useful addition...

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

Post by serendipity »

Yes, something like that would be nice actually and has been asked couple of times. For example: here, here, here and here.
But until it really gets implemented, what Jacky suggested above is not too hard to have. Anyway, my vote for this feature.

avsfan
Posts: 554
Joined: 29 Jun 2006 09:00
Location: Fort Collins, Colorado

Post by avsfan »

serendipity wrote:Yes, something like that would be nice actually and has been asked couple of times. For example: here, here, here and here.
But until it really gets implemented, what Jacky suggested above is not too hard to have. Anyway, my vote for this feature.
Ah, no wonder it seemed like such a good idea... :) Makes me feel good that I thought of it... :oops:

Agreed about Jacky's idea -- that's a nice compromise for now...

Post Reply