Search found 13168 matches

by highend
28 Mar 2024 07:55
Forum: Wishes
Topic: Tag List Management
Replies: 5
Views: 1454

Re: Tag List Management

I think it was related to the order of the entries in tag.dat file
If you e.g. change a drive letter from D to G and already have tagged files on E
this would break it if you don't move all entries with G after the ones from E

tag.dat file content must be sorted case-sensitive!
by highend
26 Mar 2024 17:54
Forum: Tips & Tricks, Questions & Answers
Topic: Shared Tag File Size, 2nd try
Replies: 8
Views: 954

Re: Shared Tag File Size, 2nd try

And your tag.dat file is how large atm?
by highend
25 Mar 2024 20:41
Forum: Bug Reports
Topic: Right click slow/delay
Replies: 22
Views: 883

Re: Right click slow/delay

We are working on a new version but NO promises atm when it’ll be done (so don’t ask for it)…
by highend
25 Mar 2024 19:02
Forum: Wishes
Topic: column "dimensions"
Replies: 7
Views: 103

Re: column "dimensions"

You can always use a scripted custom column and format the output as you need it...

Code: Select all

return property('System.Image.HorizontalSize', <cc_item>) . 'x' . property('System.Image.VerticalSize', <cc_item>);
by highend
25 Mar 2024 15:35
Forum: Other Software
Topic: Reminder needed
Replies: 8
Views: 6008

Re: Reminder needed

i did very same thing 13 years ago!
March 2024 - November 2016 <= 8 years^^
by highend
25 Mar 2024 10:03
Forum: Bug Reports
Topic: Docx document cannot display custom icons correctly.
Replies: 2
Views: 52

Re: Docx document cannot display custom icons correctly.

Then maybe post your custom icon definitions and a screenshot how the icons are currently displayed?
by highend
25 Mar 2024 07:38
Forum: Wishes
Topic: column "dimensions"
Replies: 7
Views: 103

Re: column "dimensions"

Add height as well and shift+left click the column header of height => Secondary sort order
1.png
1.png (24.46 KiB) Viewed 88 times
by highend
23 Mar 2024 11:55
Forum: Bug Reports
Topic: Certain folders in User Folder not visible
Replies: 2
Views: 61

Re: Certain folders in User Folder not visible

Look into
Configuration | General | Tree and List | Items in Tree and List | Select Items...
Click that button..
?
by highend
22 Mar 2024 13:15
Forum: Script Exchange
Topic: Trying to implement a layout that adapts to the window size/state
Replies: 2
Views: 76

Re: Trying to implement a layout that adapts to the window size/state

"Hide" // Just if (get("#663")) { #663; } // Navigation panels // Alternatively, with single items // if (get("#800")) { #800; } // Dual Pane // if (get("#664")) { #664; } // Show Catalog // if (get("#668")) { #668; } // Show Tree "Show" i...
by highend
21 Mar 2024 17:17
Forum: Tips & Tricks, Questions & Answers
Topic: Filename shortened in the middle
Replies: 2
Views: 52

Re: Filename shortened in the middle

Uncheck
Configuration | Colors and Styles | Styles | Columns | [x] Truncate filenames in the middle
by highend
21 Mar 2024 12:37
Forum: Tips & Tricks, Questions & Answers
Topic: Toolbars - new line
Replies: 44
Views: 873

Re: Toolbars - new line

Yeah, not the best option but better then nothing^^ Here is a script for a user button. Save it in a file: <your XY scripts folder>\ Create user button.xys Create a user button and then you can drag a file or folder onto that button When the snippet window pops up, just press CTRL+V (the necessary i...
by highend
21 Mar 2024 11:53
Forum: Tips & Tricks, Questions & Answers
Topic: Toolbars - new line
Replies: 44
Views: 873

Re: Toolbars - new line

The script of the DUB can create a new button pointing to the value of <get drop>.
It can but there is no way to configure that new button via scripting?

Writing the necessary definition directly into the .ini would require a XY restart...
by highend
21 Mar 2024 08:56
Forum: Wishes
Topic: I would like to nest my favourite folders
Replies: 6
Views: 173

Re: I would like to nest my favourite folders

Mini Tree from Favorite Folders as an idea is already doable (scripting). But als long as they don't have a natively stored hierarchy I'm unsure if this makes sense...
by highend
18 Mar 2024 17:52
Forum: Wishes
Topic: close multi tabs
Replies: 9
Views: 381

Re: close multi tabs

If you need to reset a variable before it's e.g. counted up in a next loop again, just set it to e.g. 0 before

Code: Select all

    while ($i++ < $cntTabs) {
    ...
    }
    
    $i = 0;
    while ($i++ < $cntTabs) {
    ...
    }