Search found 1 match

by harryemichell
Mon Jun 16, 2025 5:39 am
Forum: Help Me
Topic: check if layer has layer mask
Replies: 3
Views: 34486

Re: check if layer has layer mask

Hey, I ran into the same issue before! In Photoshop scripting, hasMask only checks for vector masks, not layer masks. To check for a pixel-based layer mask, you’ll need to dive into ActionDescriptor or use hasLayerMask with ActionManager code. It’s a bit more complex, but it works. Keep going, you’r...