Search found 3 matches

by alexouros
Mon Nov 05, 2018 12:56 am
Forum: Photoshop Scripting - General Discussion
Topic: Get layer comp index?
Replies: 4
Views: 9069

Re: Get layer comp index?

Hey if there're other people who aren't asking $50 for some simple help, I'd really appreciate is someone could let me know how I could get layer comp index with javascript?
by alexouros
Sun Nov 04, 2018 11:31 pm
Forum: Photoshop Scripting - General Discussion
Topic: Get layer comp index?
Replies: 4
Views: 9069

Re: Get layer comp index?

Haha no, not going to ask a question and vanish. The reason I have a thousand layers is because I’m a storyboard artist and a thousand layers usually translate to about 200-300 panels which would be about 2-4 minutes of screen time. So right now I’m trying to find ways how scripts can improve my sto...
by alexouros
Sat Nov 03, 2018 8:01 pm
Forum: Photoshop Scripting - General Discussion
Topic: Get layer comp index?
Replies: 4
Views: 9069

Get layer comp index?

Hi, I have this script to get the currently selected layer comp's index (this is a section of it) for( var c = 0; c < doc.layerComps.length; c++ ){ if( doc.layerComps[c].selected == true ){ currentLayerCompID = c; break; } } The problem is I have over a thousand layer comps so this script takes a ve...