Search found 528 matches

by Kukurykus
Sun Nov 04, 2018 9:21 pm
Forum: Photoshop Scripting - General Discussion
Topic: Get layer comp index?
Replies: 4
Views: 9004

Re: Get layer comp index?

Yes it is possible to do it within a half of second for 1000 layer comps, so about 30 times faster. For the applied one that would be even faster. So that can be done surely in less than about 15 seconds, depending on one's processor. But why you have so many layer comps, 1000, really? The bonus que...
by Kukurykus
Fri Nov 02, 2018 7:11 am
Forum: Photoshop Scripting - General Discussion
Topic: Get X and Y, and Width and Height of a layer
Replies: 1
Views: 6000

Re: Get X and Y, and Width and Height of a layer

Code: Select all

b = activeDocument.activeLayer.bounds
x = b[0], y = b[1], w = b[2] - b[0], h = b[3] - b[1]
alert(x + ' & ' + y + ' & ' + w + ' & ' + h)

I sent you PM if you have more questions...
by Kukurykus
Sun Sep 30, 2018 12:58 am
Forum: Photoshop Scripting - General Discussion
Topic: Copy Merge Multiple Layers Script?
Replies: 2
Views: 8796

Re: Copy Merge Multiple Layers Script?

There's something very similar somone 'just' asked in other theard, however that waits now for a script as well:
viewtopic.php?f=66&t=40501&sid=066863ec ... eeb447da07
by Kukurykus
Sun Sep 30, 2018 12:44 am
Forum: Help Me
Topic: looking for a script to apply adjustment layers to multiple layers
Replies: 9
Views: 13530

Re: looking for a script to apply adjustment layers to multiple layers

Okey now I think I understand. It is possible to do. It's late here so probably I'll focus on it tomorrow if I have time. Just one last question. Do you want three adjustement layers where merged into one? And then duplicated as many times as many there are normal layers? So over each normal layer y...
by Kukurykus
Sat Sep 29, 2018 12:06 am
Forum: Help Me
Topic: looking for a script to apply adjustment layers to multiple layers
Replies: 9
Views: 13530

Re: looking for a script to apply adjustment layers to multiple layers

If I understand you made smart object from 4 adjustement layers that got 'Layer 2990' name. Then you created another smart object from 4 layers that each has other transparency that for 'Layer 2989' name. You can't make Smart Object from Adjustement layers as it is going to disable pernamently their...
by Kukurykus
Wed Sep 26, 2018 10:27 am
Forum: Help Me
Topic: looking for a script to apply adjustment layers to multiple layers
Replies: 9
Views: 13530

Re: looking for a script to apply adjustment layers to multiple layers

Please post 2 screenshots with examplary scenario to imagine better that you described. So I ask of tree of layer(Set)s image from before applying adjustement layers to, and then one from after applying them. That let to be sure how that should work, thx! Indicate also unseen details...
by Kukurykus
Sun Sep 23, 2018 10:10 pm
Forum: Photoshop Scripting - General Discussion
Topic: A huge bank of scripts translated into Spanish
Replies: 5
Views: 9520

Re: A huge bank of scripts translated into Spanish

Nice job. So if I understand, you translated scripts found on this forum to spanish version?
by Kukurykus
Thu Sep 20, 2018 1:53 pm
Forum: Help Me
Topic: Programmatically change a certain setting in Preferences Window
Replies: 1
Views: 4459

Re: Programmatically change a certain setting in Preferences Window

Send me PM for more questions: sTT = stringIDToTypeID; function wS(v) { (ref = new ActionReference()).putProperty(sTT('property'), gP = sTT('generalPreferences')) ref.putClass(sTT('application')); (dsc1 = new ActionDescriptor()).putReference(sTT('null'), ref); (dsc2 = new ActionDescriptor()).putBool...
by Kukurykus
Fri Sep 14, 2018 6:51 pm
Forum: Photoshop Scripting - General Discussion
Topic: Layer To Be Centered
Replies: 2
Views: 6923

Re: Layer To Be Centered

Select an group with layers you want to center and run script. For more information read a sent to you PM: sTT = stringIDToTypeID nme = (aD = activeDocument).activeLayer.name runMenuItem(sTT('ungroupLayersEvent')); (sel = aD.selection).selectAll(); (ref2 = new ActionReference()).putEnumerated (sTT('...
by Kukurykus
Tue Sep 04, 2018 5:03 am
Forum: Photoshop Scripting: Code Snippets
Topic: Photoshop DOM Parser (debugging)
Replies: 5
Views: 26039

Re: Photoshop DOM Parser (debugging)

What is 'iX Developer'? Any links to it? And what is its relation with this theard?