Search found 13233 matches

by highend
30 Mar 2024 22:29
Forum: Script Exchange
Topic: How to add pause between two script lines
Replies: 12
Views: 4687

Re: How to add pause between two script lines

Is there a way to make it wait until the previous line is done?

Code: Select all

setting "BackgroundFileOps", 0;
by highend
30 Mar 2024 00:29
Forum: Tips & Tricks, Questions & Answers
Topic: How do I get rid of Labels spacing? (Style: Label column - caption)
Replies: 12
Views: 374

Re: How do I get rid of Labels spacing? (Style: Label column - caption)

v25.20.0106 - 2023-11-30 10:14
* Configuration | Information | Tags | Label style: In style "Label column (caption)"
the texts are now drawn horizontally centered. And the height of the labels is
derived from the font height, not the row height.
by highend
29 Mar 2024 14:35
Forum: Tips & Tricks, Questions & Answers
Topic: Desktop Recycle Bin Doesn't "Empty"
Replies: 9
Views: 471

Re: Desktop Recycle Bin Doesn't "Empty"

It's a simple if check followed by a command id execution if true...
by highend
29 Mar 2024 13:45
Forum: Tips & Tricks, Questions & Answers
Topic: Desktop Recycle Bin Doesn't "Empty"
Replies: 9
Views: 471

Re: Desktop Recycle Bin Doesn't "Empty"

Custom event actions - Changing Locations - After browsing a folder

The variable to use in such a script is: <oldpath>...
by highend
29 Mar 2024 13:05
Forum: Tips & Tricks, Questions & Answers
Topic: Command numbers
Replies: 3
Views: 167

Re: Command numbers

What are command numbers for function keys?
by highend
28 Mar 2024 07:55
Forum: Wishes
Topic: Tag List Management
Replies: 5
Views: 1810

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: 9
Views: 1246

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: 28
Views: 1470

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

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

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: 9
Views: 416

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

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

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

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...