Search found 107 matches

by MaxEnrik
14 Sep 2019 05:33
Forum: Tips & Tricks, Questions & Answers
Topic: Off Fit Mode Unless Image Size Better Than 1280x720
Replies: 13
Views: 1867

Re: Off Fit Mode Unless Image Size Better Than 1280x720

Oh! I don't think 1280x720 image is a big one. Am I think wrong?
by MaxEnrik
13 Sep 2019 13:09
Forum: Tips & Tricks, Questions & Answers
Topic: Off Fit Mode Unless Image Size Better Than 1280x720
Replies: 13
Views: 1867

Re: Off Fit Mode Unless Image Size Better Than 1280x720

Sorry I didn't explained well enough.

In 'Full Screen Preview' mode I press 'W' for 'Fit Width' mode and now image extend until to fit width of display (this is ok) but now I need to drag image Up / Down with 'Right Mouse Button' while I try to drag XY all the way slow down.
by MaxEnrik
13 Sep 2019 04:42
Forum: Tips & Tricks, Questions & Answers
Topic: Off Fit Mode Unless Image Size Better Than 1280x720
Replies: 13
Views: 1867

Re: Off Fit Mode Unless Image Size Better Than 1280x720

When I use 'Fit Width' in that mode XY slow down. What am I have to check for it?
by MaxEnrik
25 Aug 2019 03:17
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

This really looks like so easy and so simple but it took a lot of efforts and consumed a lot of times. So far works good. Thanks a lot for your great explanations, I really highly appreciate that @highend Hope nothing wrong in this code. foreach($folder, <get SelectedItemsPathNames |>, , "e&quo...
by MaxEnrik
18 Aug 2019 21:16
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

Unfortunately since first time I shared my AHK code lines. Today I need to share it again that it reached over 700 lines most of them I wrote by myself. Yes I remember that we already talked about this. https://i.snipboard.io/OEAnlu.jpg So since you and @jupe explained well (I believe so) but I real...
by MaxEnrik
18 Aug 2019 02:29
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

I would like to add ' . ' to this line but can't and I tried like this ' .|_ ' unfortunately this doesn't work. foreach($folder, <get SelectedItemsPathNames |>, , "e") { $base = gpc($folder, "base", -2, 1); $newName = replace(regexreplace($base, "^(.*?)(.Male|.Female|_Male|_...
by MaxEnrik
16 Aug 2019 23:04
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

I didn't remove it vice versa I tried to add more lines for files. Thanks a lot. Seems works good.
by MaxEnrik
16 Aug 2019 21:40
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

I believe this is maybe so easy but still trying unfortunately couldn't done it by myself. I'd like to below code also could work for files , please. foreach($folder, <get SelectedItemsPathNames |>, , "e") { if (exists($folder) != 2) { continue; } $base = gpc($folder, "base", -2,...
by MaxEnrik
02 Aug 2019 23:21
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

OMG! No way! I never mind it to remove it. Even didn't pay attention on it.
Thanks a lot.
by MaxEnrik
02 Aug 2019 23:09
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

I tried over 40 mins to modify this single line and make it run properly but still nothing. $newName = replace(regexreplace($base, "^(.*?)(_Male|_Female)(.*?$)", "$1$2"), "_", " "); I just need result could be like this: Name Surname 02739 Name Surname 00063
by MaxEnrik
02 Aug 2019 11:46
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

Any help?
Can't make it run.
by MaxEnrik
01 Aug 2019 18:26
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

I tried below one but didn't worked. I am worrying that I didn't understand correctly. foreach($folder, <get SelectedItemsPathNames |>, , "e") { if (exists($folder) != 2) { continue; } $parent = gpc($folder, "base", -2, 1); $filesInside = listfolder($folder, , 4); $i = 0; while (...
by MaxEnrik
01 Aug 2019 17:51
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

I would like to do this with script.

This is original version:
Name_Surname_02739_Male_20_Artist
Name_Surname_00063_Female_10_Musician

Expecting result:
Name Surname 02739 Male
Name Surname 00063 Female

Thanks in advance.
by MaxEnrik
01 Aug 2019 14:59
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

That is what I wanted. Thanks again.
by MaxEnrik
01 Aug 2019 14:04
Forum: Tips & Tricks, Questions & Answers
Topic: Miscellaneous - Questions
Replies: 106
Views: 18040

Re: Miscellaneous - Questions

Folders have only single file inside the folder. (Very rarely 2 files can be in the folders.) So I just need to files get Folder names with script. https://i.snag.gy/QAyrYd.jpg Expecting results with script. Car Showcase 00063.mp4 Food Desert 00759.mp4 This code from @highend I just tweaked but does...