Search found 29 matches

by Stephen_A_Marsh
Thu Oct 20, 2022 11:23 am
Forum: Adobe Bridge Scripting: General Discussion
Topic: Copy iptc metadata with jpg in eps.
Replies: 1
Views: 8289

Re: Copy iptc metadata with jpg in eps.

I came here looking for an answer to a similar question... Sadly, it wasn't answered. Perhaps because it is complex to script? https://community.adobe.com/t5/bridge-discussions/copy-labels-from-jpeg-proxies-to-hi-res-psds/td-p/13281346 The good news is that it is easy enough to do with ExifTool. Jus...
by Stephen_A_Marsh
Thu Oct 20, 2022 12:21 am
Forum: Photoshop Scripts
Topic: Image Processor with PNG support
Replies: 4
Views: 6385

Re: Image Processor with PNG support

As the script attachment was lost, it has been resurrected here:

https://community.adobe.com/t5/photosho ... #U13275030
by Stephen_A_Marsh
Thu Sep 22, 2022 12:14 pm
Forum: Help Me
Topic: About Clipping mask
Replies: 18
Views: 7993

Re: About Clipping mask

Thank you, it is all working and clear now! :]
by Stephen_A_Marsh
Thu Sep 22, 2022 8:26 am
Forum: Help Me
Topic: About Clipping mask
Replies: 18
Views: 7993

Re: About Clipping mask

The layer containing transparency that all upper layers are clipped against should be selected, not the last clipped layer. I was hoping for more refined code that does the same thing as the function that I created and posted... That code is a bit of a hack, exploiting layer visibility and backward ...
by Stephen_A_Marsh
Wed Sep 21, 2022 9:53 pm
Forum: Help Me
Topic: About Clipping mask
Replies: 18
Views: 7993

Re: About Clipping mask

Thank you Kukurykus!

The code is selecting the last middleClippingLayer rather than the parent/base "bottomClippingLayer" that all other layers in the clipping group/mask are indented against.
by Stephen_A_Marsh
Wed Sep 21, 2022 1:25 pm
Forum: Help Me
Topic: About Clipping mask
Replies: 18
Views: 7993

Re: About Clipping mask

I know that this is an old topic, however, this doesn't appear to be discussed very much. I was in need of selecting the bottomClippingLayer if the topClippingLayer or a middleClippingLayer was selected. Is there an obscure way to do so via AM code for making the bottomClippingLayer active? This is ...
by Stephen_A_Marsh
Sun Jul 03, 2022 2:39 am
Forum: Automation & Image Workflow
Topic: Select all "Smart Objects" layers
Replies: 2
Views: 13845

Re: Select all "Smart Objects" layers

I'm a bit late to the party, however, jazz-y created the following script, I have changed the number over from text to smart objects: https://community.adobe.com/t5/photoshop-ecosystem-discussions/select-only-the-text-layers/m-p/11017429 /* https://community.adobe.com/t5/photoshop-ecosystem-discussi...
by Stephen_A_Marsh
Wed Jun 22, 2022 11:09 am
Forum: Help Me
Topic: Info about Alpha-Channels
Replies: 1
Views: 1007

Re: Info about Alpha-Channels

I'm a little late to the party, however, I hope this helps @klevteev or somebody else... // CMYK mode file: remove all channels except for the composite channel if (documents.length > 0) { if (activeDocument.mode == DocumentMode.CMYK) { try { for (var i = activeDocument.channels.length - 1; i >= 0; ...
by Stephen_A_Marsh
Thu Dec 09, 2021 5:18 am
Forum: Help Me
Topic: Is it possible? Rename Layers to Blending Mode
Replies: 10
Views: 6810

Re: Is it possible? Rename Layers to Blending Mode

NOTE: I had to pull the original code for Proper Case text as it was failing (it didn't fail before posting!)... EDIT - 11th December 2021: Here is the updated code for Proper Case conversion! /* https://www.ps-scripts.com/viewtopic.php?p=170072#p170072 */ // Active Layer to Blend Mode Name.jsx // ...
by Stephen_A_Marsh
Tue Dec 07, 2021 7:34 am
Forum: Help Me
Topic: How to obtain the current layer size
Replies: 3
Views: 1892

Re: How to obtain the current layer size

One can also use

Code: Select all

.value
to remove the unix suffix:

https://gist.github.com/MarshySwamp/342 ... 3ef5b456ba