Search found 14 matches

by skrippy
Tue Jun 30, 2020 2:16 am
Forum: Help Me
Topic: How to test if a new layer was created inside a group?
Replies: 1
Views: 1711

Re: How to test if a new layer was created inside a group?

Oops...

I'm not really needing this.

I thought I did because I was not using the best way to create a merged layer in all cases...

Sorry! :oops:
by skrippy
Mon Jun 29, 2020 7:02 am
Forum: Help Me
Topic: How to detect if the Smart Filters mask is selected?
Replies: 0
Views: 2253

How to detect if the Smart Filters mask is selected?

I have also asked this here recently and tried some old(?) snippet from Kukurykus that seems not to be working, or that I don't understand how to use...?

http://community.adobe.com/t5/photoshop ... 924?page=1

Thank you!
by skrippy
Mon Jun 29, 2020 6:57 am
Forum: Help Me
Topic: How to test if a new layer was created inside a group?
Replies: 1
Views: 1711

How to test if a new layer was created inside a group?

I'm really looking for a way to avoid the classic problem of a merged layer to appear inside a group when that command was given with an open group selected... (AFAIK, you can't first close a group by script either?) If I can test if the MERGED LAYER was created inside a group, I can move it out bef...
by skrippy
Fri Jun 01, 2018 2:07 pm
Forum: Help Me
Topic: Select layer above/below - even if hidden
Replies: 6
Views: 7475

Re: Select layer above/below - even if hidden

I was looking for this too and tested the code in the second post.

This seems not to be working anymore in PS CC 2018. it's not doing anything.
by skrippy
Wed May 30, 2018 12:33 am
Forum: Help Me
Topic: Alt/Option + layer eye clicking functionality inside a layer group only
Replies: 0
Views: 6084

Alt/Option + layer eye clicking functionality inside a layer group only

When we Alt/Option click the eye on a layer, we see this layer only. I wish PS had native functionality to do this inside a layer group only, keeping what was visible outside of it untouched. This way you can switch between, for example, variations you made inside a layer group (and not needing Laye...
by skrippy
Fri Dec 16, 2016 5:54 pm
Forum: Help Me
Topic: Can't get even alert to work - Eclipse/Extension Builder3
Replies: 4
Views: 6185

Re: Can't get even alert to work - Eclipse/Extension Builder3

Maybe unrelated, but I had the same problem of an alert not even working in a simple script.

I got the feeling it was because I used some "unrecognized" code. One character can do it probably.
by skrippy
Fri Dec 16, 2016 5:51 pm
Forum: Help Me
Topic: Code or clever workaround for fail safe toggling of palettes into view?
Replies: 4
Views: 6129

Re: Code or clever workaround for fail safe toggling of palettes into view?

I took out all my repeated "app." prefixes and now it works.

Thanks for another great fix, Javier :)
by skrippy
Thu Dec 08, 2016 2:29 am
Forum: Help Me
Topic: Code or clever workaround for fail safe toggling of palettes into view?
Replies: 4
Views: 6129

Re: Code or clever workaround for fail safe toggling of palettes into view?

^ This kind of thing is indeed generally working :) Except, the obvious and seemingly existing 'closeLayerCompsPanel' is not working for me (Adobe bug?) . So I have to blast the whole LayerCompsPanelGroup which can give a small jump on the screen... #target photoshop if ( doc.layers.length !== 1 ) {...
by skrippy
Wed Dec 07, 2016 10:38 pm
Forum: Help Me
Topic: Code or clever workaround for fail safe toggling of palettes into view?
Replies: 4
Views: 6129

Re: Code or clever workaround for fail safe toggling of palettes into view?

I think I'm gonna find some goodies in this one...

Hide/open UI windows with JS (2013)
www.ps-scripts.com/viewtopic.php?f=66&t=8219
by skrippy
Wed Dec 07, 2016 7:35 am
Forum: Help Me
Topic: Code or clever workaround for fail safe toggling of palettes into view?
Replies: 4
Views: 6129

Code or clever workaround for fail safe toggling of palettes into view?

There are several "events" or actions where I like to have a specific palette pop/toggle into view 8-) When you are careful you can often prevent these toggles from making your palette disappear instead (by planning to not have it active when it likely gets toggled), but I have not yet fou...