Search found 2790 matches

by jupe
14 Mar 2024 01:53
Forum: Wishes
Topic: Padding file names with 0
Replies: 12
Views: 348

Re: Padding file names with 0

I have noticed a crash can occur if for example you type in the address bar an empty variable and then pad, while this may not be something that people would do intentionally, it could still occur, to repro in fresh, Enter something like the following in the AB: <a><pad 1 XY will crash at this point...
by jupe
09 Mar 2024 21:57
Forum: Bug Reports
Topic: SC property
Replies: 3
Views: 251

Re: SC property

Not sure if it matters because there are alternatives, but FYI the n flag doesn't work for the new #image.width/height
by jupe
09 Mar 2024 20:25
Forum: Tips & Tricks, Questions & Answers
Topic: Scripting a file picker / file chooser
Replies: 2
Views: 95

Re: Scripting a file picker / file chooser

Not sure how you found input, but not inputfile()
by jupe
09 Mar 2024 18:38
Forum: Bug Reports
Topic: Bug with FVS
Replies: 16
Views: 1324

Re: Bug with FVS

I edited last post (while u were posting), I meant icon not btn, I may get it right eventually. :eh:
by jupe
09 Mar 2024 18:33
Forum: Bug Reports
Topic: Bug with FVS
Replies: 16
Views: 1324

Re: Bug with FVS

I think I worded that badly, I meant the icon :id, not cmd. As to the manage FVS changes in .0108, what do you think about having the VF overlay (like used on tabs/catalog) instead, or would that be difficult/unnecessary, anyway it's just a suggestion.
by jupe
09 Mar 2024 06:29
Forum: Tips & Tricks, Questions & Answers
Topic: modifying user folder in tree?
Replies: 5
Views: 132

Re: modifying user folder in tree?

Yeah I was unsure. Check these items then.

View | Show Items | Show Hidden Files and Folders
by jupe
09 Mar 2024 06:19
Forum: Tips & Tricks, Questions & Answers
Topic: modifying user folder in tree?
Replies: 5
Views: 132

Re: modifying user folder in tree?

Maybe you mean this:

Configuration | General | Tree and List | Items in Tree and List | Select Items...
by jupe
09 Mar 2024 06:17
Forum: Bug Reports
Topic: Bug with FVS
Replies: 16
Views: 1324

Re: Bug with FVS

Just reusing suitable topic title.
Not really a bug, but FYI I noticed that since icons were added to manage FVS, when a VF is set within, the icon shown is the dual loc icon, unsure if you wanted it like that. (also what is the :id for dual?)
by jupe
09 Mar 2024 02:00
Forum: Tips & Tricks, Questions & Answers
Topic: How to write copy/tags to a NEW file
Replies: 2
Views: 114

Re: How to write copy/tags to a NEW file

When you create a new file in current folder, orig selection is lost, so you need to make sure tagitems is getting orig tags from a valid filename, eg.

replace this:
$tags = tagitems("tags");

with this:
$tags = tagitems("tags", , $file);
by jupe
06 Mar 2024 06:34
Forum: Tips & Tricks, Questions & Answers
Topic: display of video duration
Replies: 4
Views: 136

Re: display of video duration

I mentioned where in my post... :cry:
by jupe
06 Mar 2024 06:07
Forum: Tips & Tricks, Questions & Answers
Topic: display of video duration
Replies: 4
Views: 136

Re: display of video duration

Use this instead in the template:

|s|<get LengthsSelected>

Configuration | Colors and Styles | Templates | Status Bar
by jupe
06 Mar 2024 03:09
Forum: Tips & Tricks, Questions & Answers
Topic: Reconstruct / extract image from thumbnail dat2/dbits file
Replies: 13
Views: 1658

Re: Reconstruct / extract image from thumbnail dat2/dbits file

Something like this should work: $outfol = "C:\folder_to_output_thumbnail_to"; foreach($file, quicksearch("*.dat2 /fn"), <crlf>) { $base = gpc($file, "base"); if (exists("$base.dbits")) { rethumb <curpath>, $base, $outfol; } } It will process the whole folder ...
by jupe
03 Mar 2024 02:45
Forum: Tips & Tricks, Questions & Answers
Topic: How to Exclude Image Source To Be Used For Folder Thumbnail?
Replies: 7
Views: 186

Re: How to Exclude Image Source To Be Used For Folder Thumbnail?

Using the first shell thumbs option, you'll get larger thumbnails (not icons), but their style may not be as you desire. Not sure about Win11, but in Win10- the default shell folder icon source is 256px max, so there isn't a size to step up to. Also in case you aren't aware, when using default XY se...