Search found 32 matches

by taufan
27 Dec 2023 09:38
Forum: Tips & Tricks, Questions & Answers
Topic: How RegExp Rename add Bracket before Hashtag and at the end of Filename
Replies: 2
Views: 343

How RegExp Rename add Bracket before Hashtag and at the end of Filename

Hi, For example i have 2 file: filename_1 #dog #f3.jpg filename_2 #dog #duck #f4.jpg the result I want is: filename_1 [#dog #f3].jpg filename_2 [#dog #duck #f4].jpg I try RegExp Rename with ^([^#]+)(#)(.+) > $1[$2$3 But the result is like this: filename_1 [#dog #f3.jpg filename_2 [#dog #duck #f4.jpg...
by taufan
22 Dec 2023 12:07
Forum: Tips & Tricks, Questions & Answers
Topic: How Batch Rename /cut AND THEN add Syntax for increments
Replies: 2
Views: 164

Re: How Batch Rename /cut AND THEN add Syntax for increments

Wow, it worked.
Thank you very much. That's very helpful.
🙏
by taufan
21 Dec 2023 21:09
Forum: Tips & Tricks, Questions & Answers
Topic: How Batch Rename /cut AND THEN add Syntax for increments
Replies: 2
Views: 164

How Batch Rename /cut AND THEN add Syntax for increments

Hi, For example i have 2 file: test_1703_3261.jpg test_1703_3201.jpg the result I want is: test_1703_1.jpg test_1703_2.jpg I try batch rename with "/cut 0,-5,0" But failed: Clipboard-20231222.jpg Any idea? Maybe "/cut 0,-5,0" AND THEN "*_<#1>" or something like that? Th...
by taufan
24 Aug 2023 14:51
Forum: Tips & Tricks, Questions & Answers
Topic: How to Quick Search for Tags/Keywords
Replies: 1
Views: 247

How to Quick Search for Tags/Keywords

Hi,
How to Quick Search for Tags

Clipboard-20230824.jpg
Clipboard-20230824.jpg (103.31 KiB) Viewed 247 times


i have tried the search below but nothing worked:

tag:"library"
tags:*library*
prop:tag:*library*
?tag:"library"

Any idea?


This is my pic when i view the metadata from ACDSee:
Clipboard-20230824-01.jpg
Clipboard-20230824-01.jpg (236.18 KiB) Viewed 247 times


Thanks.
by taufan
18 Apr 2023 15:29
Forum: Wishes
Topic: Middle Truncation in thumbnail view
Replies: 2
Views: 177

Re: Middle Truncation in thumbnail view

Great.
it works.
Thanks for make my life easier.
🙏
by taufan
14 Apr 2023 10:59
Forum: Wishes
Topic: Middle Truncation in thumbnail view
Replies: 2
Views: 177

Middle Truncation in thumbnail view

This is my current filename:
1111.jpg
1111.jpg (54.54 KiB) Viewed 177 times

Please add feature to show filename look like this:
222.jpg
222.jpg (50.98 KiB) Viewed 177 times

Thank you.
🙏
by taufan
14 Apr 2023 00:55
Forum: Tips & Tricks, Questions & Answers
Topic: How do I truncate the filename to be able to display the last word
Replies: 2
Views: 180

How do I truncate the filename to be able to display the last word

I don't know what keywords to look for to find this problem.

Therefore I will explain it with pictures.

This is my current filename:
Clipboard-20230414.jpg
Clipboard-20230414.jpg (54.54 KiB) Viewed 180 times


How to make it look like this:
Clipboard-20230414-01.jpg
Clipboard-20230414-01.jpg (50.98 KiB) Viewed 180 times

Thanks for your help.
I really appreciate it.
by taufan
11 Feb 2023 13:08
Forum: Tips & Tricks, Questions & Answers
Topic: How to Random Pic from inside all folder
Replies: 4
Views: 268

How to Random Pic from inside all folder

Hi,

My folder contain 3 folder. For example:
MyPics\folder1\
MyPics\folder2\
MyPics\folder3\

How to pick 4 random pic, from folder MyPics (folder 1, folder 2, folder 3) ?
using:
vi:<get pick 4 "D:\MyPics">

Thanks.
by taufan
07 Oct 2022 20:59
Forum: Tips & Tricks, Questions & Answers
Topic: How QuickSearch with multiple paths OR Specific file name contains
Replies: 1
Views: 269

How QuickSearch with multiple paths OR Specific file name contains

Hi, For example, this is my folder directory: C:\Pic\January Fun\ 1.jpg 2 #beach.jpg C:\Pic\February Happy\ 3.jpg 4 #beach.jpg C:\Pic\March Happy\ 5.jpg 6 #beach.jpg C:\Pic\April Happy\ 7 #beach.jpg 8 #beach #bali.jpg 9 #beach #bali.jpg C:\Pic\May Sad\ 10 #beach.jpg 11 #beach bali.jpg My goal: I wan...
by taufan
28 Sep 2022 22:25
Forum: Tips & Tricks, Questions & Answers
Topic: How to "Paste Image Into New JPG file"?
Replies: 2
Views: 382

Re: How to "Paste Image Into New JPG file"?

Oh yes,
It's work.
Thank you.
by taufan
28 Sep 2022 21:20
Forum: Tips & Tricks, Questions & Answers
Topic: How to "Paste Image Into New JPG file"?
Replies: 2
Views: 382

How to "Paste Image Into New JPG file"?

Hi,

I know how to "Paste Image Into New PNG file".

Clipboard-20220929-01.jpg
Clipboard-20220929-01.jpg (64.5 KiB) Viewed 382 times

My question is:
How Paste Image Into New JPG file?
Because the PNG file is too big. In some cases the size is up to 1MB-2MB, after I convert it to JPG the size is only about 100KB.

Any idea?
Thank you.
by taufan
05 Sep 2022 22:44
Forum: Tips & Tricks, Questions & Answers
Topic: Can i override sorting from QuickSearch?
Replies: 19
Views: 866

Can i override sorting from QuickSearch?

Hi,
For example i wanna search "cow" and "yellow" images with random order.
Can i override sorting from QuickSearch input?
Maybe someting like this:

Code: Select all

cow AND yellow /sort=random
Any idea?
Thanks.
by taufan
31 Aug 2022 03:02
Forum: Tips & Tricks, Questions & Answers
Topic: How to create RegExp rename button?
Replies: 1
Views: 215

How to create RegExp rename button?

Hi, I usually use the Regex rename menu to remove all text in the bracket: Clipboard-20220831-02.png - \[[^\]]*\] > My question is: How do I make a RegexRename button so that I only need to press it once to rename it? Clipboard-20220831-03.png - Or how to add that script on the nested menu? Clipboar...