Search found 31 matches

by Stephen_A_Marsh
Fri May 31, 2024 12:24 am
Forum: Photoshop Scripting - General Discussion
Topic: Layers to Channels - Script stopped working?
Replies: 3
Views: 5556

Re: Layers to Channels - Script stopped working?

Bump. No one? I will literally pay someone to get this working :ugeek: For me, the issue was with the DOM code for paste. Replacing this with AM code resolved the issue (tested in v2021 and 2024): //enable double clicking #target photoshop app.bringToFront(); //store document var docRef = app.activ...
by Stephen_A_Marsh
Wed Apr 24, 2024 1:03 am
Forum: Help Me
Topic: Script for Selecting Pixel Radius
Replies: 1
Views: 4701

Re: Script for Selecting Pixel Radius

He is a moderator of this forum (and no longer participating on the Adobe forums):

memberlist.php?mode=viewprofile&u=1091
by Stephen_A_Marsh
Sun Dec 10, 2023 5:54 am
Forum: Help Me
Topic: Script To Delete RGB Channels If Present
Replies: 6
Views: 5278

Re: Script To Delete RGB Channels If Present

I know that this is an old topic, I stumbled over it when I too was looking for code to remove the component channels. Here is the function that I created, just in case it helps someone else: removeCompChannels(); function removeCompChannels() { if (app.activeDocument.mode === DocumentMode.RGB) { fu...
by Stephen_A_Marsh
Wed Nov 15, 2023 6:27 am
Forum: Photoshop Scripting - General Discussion
Topic: activeDocument.saveAs opens dialog
Replies: 3
Views: 2636

Re: activeDocument.saveAs opens dialog

I would class your "workaround" as the preferred method, considering the following: https://helpx.adobe.com/au/photoshop/kb/networks-removable-media-photoshop.html P.S. Native OS move commands called from a script are discussed here: https://community.adobe.com/t5/photoshop-ecosystem-discu...
by Stephen_A_Marsh
Tue Nov 14, 2023 6:10 am
Forum: Photoshop Scripts
Topic: AH NextImage 2
Replies: 16
Views: 29445

Re: AH NextImage 2

Even today, these scripts are still talked about – but were lost.

Can they be restored?

If somebody has a copy, is it OK to repost them?
by Stephen_A_Marsh
Tue Oct 17, 2023 8:56 am
Forum: Help Me
Topic: Differentiate between RGB and RGB Grayscale
Replies: 3
Views: 3829

Re: Differentiate between RGB and RGB Grayscale

Perhaps this may help somebody: https://community.adobe.com/t5/bridge-discussions/script-to-find-colour-in-quot-black-amp-white-quot-jpgs/td-p/14141472 /* Batch Log Non-Neutral B&W Files from Input Folder.jsx https://community.adobe.com/t5/bridge-discussions/script-to-find-colour-in-quot-black-a...
by Stephen_A_Marsh
Mon Apr 03, 2023 10:16 pm
Forum: Photoshop Scripts
Topic: Image Processor with PNG support
Replies: 4
Views: 7445

Re: Image Processor with PNG support

A related script here:

https://github.com/SetTrend/Raw-Image-Converter

Despite the name, it has nothing to do with raw images (as in raw camera files or Photoshop Raw format).
by Stephen_A_Marsh
Sun Mar 19, 2023 1:54 am
Forum: Help Me
Topic: Photoshop CC Mac looking for script: run action on all layers
Replies: 1
Views: 2055

Re: Photoshop CC Mac looking for script: run action on all layers

Bob, you saved the webpage HTML, not the JavaScript source code (use the raw button as below for the code): https://raw.githubusercontent.com/Paul-Riggott/PS-Scripts/master/Run%20Action.jsx There are many other scripts to run an action on all or selected layers, here are some to try... https://raw.g...
by Stephen_A_Marsh
Wed Mar 08, 2023 12:11 pm
Forum: Help Me
Topic: Copy and paste adjustment layers
Replies: 1
Views: 1334

Re: Copy and paste adjustment layers

Please post a cropped screenshot of your layers panel before the first script is run, and a separate cropped screenshot after the second script is run, clearly identifying what should take place. A sample layered PSD file would also be helpful. How do the adjustment layers "belong" to a pa...