Search found 13210 matches

by highend
25 Mar 2024 19:02
Forum: Wishes
Topic: column "dimensions"
Replies: 8
Views: 221

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: 6216

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: 5
Views: 170

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: 8
Views: 221

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 206 times
by highend
23 Mar 2024 11:55
Forum: Bug Reports
Topic: Certain folders in User Folder not visible
Replies: 3
Views: 139

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: 101

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: 79

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: 49
Views: 1247

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: 49
Views: 1247

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: 215

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: 423

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) {
    ...
    }
by highend
18 Mar 2024 13:47
Forum: Tips & Tricks, Questions & Answers
Topic: What's up with orphaned tags??
Replies: 10
Views: 227

Re: What's up with orphaned tags??

or reformatting of backup drive
I don't think that wouldn't solve it. The chances that two serials are the same is... Extremely low

I'd choose the Samsung...
by highend
18 Mar 2024 13:38
Forum: Tips & Tricks, Questions & Answers
Topic: Toolbars - new line
Replies: 49
Views: 1247

Re: Toolbars - new line

Lets call it a toolbar break-through! :tup:
by highend
18 Mar 2024 13:29
Forum: Tips & Tricks, Questions & Answers
Topic: What's up with orphaned tags??
Replies: 10
Views: 227

Re: What's up with orphaned tags??

You upper three lines are borked... Valid paths can't contain a second ":"... Regarding serials: Probably the external case provides it (and not the drive inside of it). In your case it's maybe not that bad, you want the tags to be equal on them anyway. Otherwise one case would need to be ...