Search found 24 matches

by Scriptor
Tue Jan 31, 2023 8:02 am
Forum: Help Me
Topic: This HAND TOOL !!!!
Replies: 8
Views: 2446

Re: This HAND TOOL !!!!

Aw dang. Noted. If the natural/added light were constant across the images I'd say copy the changes directly from one to another and use curves to match the brightness. But that's not the case. Hm. I am unsure if evern ScriptingListener will help you, but here's a startingpoint: http://www.earthboun...
by Scriptor
Mon Jan 30, 2023 2:15 pm
Forum: Help Me
Topic: This HAND TOOL !!!!
Replies: 8
Views: 2446

Re: This HAND TOOL !!!!

Alright, I see your problem. An alternative workflow would be to use a separate layer that you draw on with the brush tool. Then you set the action to make a selection of the said layer, delete layer then run "content aware fill" on the areas you've marked. This would in theory get you the...
by Scriptor
Mon Jan 30, 2023 12:27 pm
Forum: Help Me
Topic: This HAND TOOL !!!!
Replies: 8
Views: 2446

Re: This HAND TOOL !!!!

Hey! No problem, always happy to help. I see. Well - I am not aware of any way of doing that. You might find ScriptingListener to be of use, but I am unsure of the result matches your expectations since that can be a whole hassle in itself to use. But let me ask you this: what requires you to record...
by Scriptor
Mon Jan 30, 2023 7:52 am
Forum: Help Me
Topic: This HAND TOOL !!!!
Replies: 8
Views: 2446

Re: This HAND TOOL !!!!

Hey! I've never used JS to create/modify an action but what's stopping you from just deleting the "use hand" from the action directly? Drag them down to the recyclebin in the actions panel and you should be all set - no need for a complicated script to do so..? Also - if you don't want the...
by Scriptor
Mon Sep 12, 2022 8:58 am
Forum: Help Me
Topic: Script to add filename to file info?
Replies: 6
Views: 1318

Re: Script to add filename to file info?

The same as you used previous scripts? Save these codes to separate .jsx files, one as Reader, second as Writer. You may then copy them to 'Presets / Scripts' folder of your Photoshop, so after relaunching the application you'll have access to them from 'File / Scipts' menu. You can also, instead o...
by Scriptor
Fri Sep 09, 2022 9:16 am
Forum: Help Me
Topic: Script to add filename to file info?
Replies: 6
Views: 1318

Re: Script to add filename to file info?

Another method, might be a bit cleaner depending on how you implement it: app.activeDocument.info.title = app.activeDocument.name; //Adds the current document name to the IPTC Core field "Title" app.activeDocument.info.caption = app.activeDocument.name; //Adds the current document name to ...
by Scriptor
Fri Aug 05, 2022 10:04 am
Forum: Help Me
Topic: List all files in folder and subfolders
Replies: 3
Views: 1282

Re: List all files in folder and subfolders

Relized someone else might be interrested in this. Here's an overly complex solution that I made shortly after posting the question. I know it's really ugly, but at the time I just wanted something that did the job, and I'm not too concerned about how long time it takes to get all files. Enjoy! var ...
by Scriptor
Fri Dec 03, 2021 2:27 pm
Forum: Help Me
Topic: List all files in folder and subfolders
Replies: 3
Views: 1282

List all files in folder and subfolders

Hey guys! Im trying to get a list of all files (doesn't really matter what extension) that exists in a folder and it's subfolders. So far I've tried a few solutions without coming up with anything simple and reliable. I did try this; https://community.adobe.com/t5/photoshop-ecosystem-discussions/pho...
by Scriptor
Wed Sep 15, 2021 1:51 pm
Forum: Help Me
Topic: Resizing multiple layers to the same size
Replies: 2
Views: 1630

Re: Resizing multiple layers to the same size

Hey! You can change how Photoshop handles recording of actions by entering "Edit" > "Preferences" > "Units & Rulers..." > "[Units]" > "[Rulers]" > "Pixels" https://i.imgur.com/TTh1kGK.png So I wouldn't say that you need a script to achi...
by Scriptor
Thu Aug 05, 2021 1:50 pm
Forum: Help Me
Topic: [Mac] Linking to a folder placed on a NAS
Replies: 11
Views: 6939

Re: [Mac] Linking to a folder placed on a NAS

Hey - I realized that I did not post a proper answer. The easiest fix I found to this was to place a temporary .psd-file in the folder I wanted to link to, then run this snippet; selectedfile = app.openDialog(); alert("Selected Location: \n" + selectedfile); And just using whatever output ...