need youre help to Apply multiple selected layer visibility to all layer comps
hello, I've found this wonderful script, on this site:viewtopic.php?f=9&t=4681%E2%80%8Fthis script allows me to select one layer and apply it's visibility on multiple layer comps, i was wondering...
View ArticleText Layers in a setLayers
Hello, I am writing to you guys because I need help (again).I made a script and when it is done it finishes with "picture" layers and text layers.I would like to put all to text layers in a setLayers...
View ArticleRe: Is it worth it for me to learn scripting in PS?
Yes CS3 was the last good version of Photoshop Adobe released. I'm sure there are bugs in CS3 however CS3 at least works in a consistent manner. If you do not change Adobe's default setting in the...
View ArticleRe: Is it worth it for me to learn scripting in PS?
photospot_scripter wrote: for example: you can't record any filter actions in CC? I have not run into anything that will not record in Photoshop CC that would record in earlier versions. I think the...
View ArticleRe: Text Layers in a setLayers
A little more detail about what you are trying to so would be helpful. But if 'setLayers' is the name of a layerSet and none of the text layers are in layerSets this will do what I think you want done....
View ArticleRe: Text Layers in a setLayers
Thank a lot. Sorry for the lack of details. I am not very good in Written English.What I want to do is to group text layers (generated by the script) allowing me to make general modifications after the...
View ArticleRe: Text Layers in a setLayers
I Try This :I remaned my text layers "Letter" to test... (to understand the concept) var doctest = app.activeDocument;//var targetLayerSet = doc.layerSets.getByName("Letter "); var newLayerSet =...
View ArticleRe: Text Layers in a setLayers
Excellent I understood.I will optimize it but it works.. Thanks A lot var doctest = app.activeDocument; var newLayerSet = app.activeDocument.layerSets.add(); var textLayers = []; for(var i =0;...
View ArticleRe: Text Layers in a setLayers
If the text layers are named 'Letter A', 'Letter B', etc you may want to changeif(doctest.artLayers[i].name== "Letter " )toif(doctest.artLayers[i].search("Letter ")!=-1 ) if(doctest.artLayers[i].name==...
View ArticleScripting bugs - feedback site?
Hi,I'm wondering whether the bugs we all find in Scripting would be better logged on the Photoshop Feedback website (http://feedback.photoshop.com/photoshop_family).The scripting forum is great to...
View ArticleRe: Text Layers in a setLayers
Thank a lot for the tip. Its works. You saved me few moments to figure it out.
View ArticleRe: Scripting bugs - feedback site?
I agree that if you want to report a bug to Adobe or make a feature request this forum is not the place to do it. However I think that if you find what you think is a bug it is better to report it here...
View ArticleRe: Text Layers in a setLayers
Even with the typo? I should have typed.if(doctest.artLayers[i].name.search("Letter ")!=-1 )
View ArticleRe: Is it worth it for me to learn scripting in PS?
For Example: Here's a specific one that is causing some of my tools to no longer work. Liquify. Scritping listener results when you load a previously saved mesh into the Liquify Filter:in CS6...
View ArticleRe: "No Such Element". Intro to scripting.
Oh wow. I didn't even see that. Thanks. I can see how your script works. I think the hardest part of this is going to be learning the syntax. I'm bad with languages. I appreciate the reply.
View ArticleSet activeLayer above current activeLayer
Hello I want the second Layer from the bottom to be my activeLayer. I have already selected the bottom Layer by doing this: #target photoshopapp.bringToFront(); var background =...
View ArticleRe: Is it worth it for me to learn scripting in PS?
I was unaware of that. I don't use the liquidy filter much. And I misunderstood you when you said that "you can't record any filter actions in CC". Most filters are still recorded by scriptlistener,...
View ArticleRe: Set activeLayer above current activeLayer
The answer is in how you are selecting the background. Just change the -1 to -2 for the second to the bottom layer. In other words you are selecting by index so just change the index to select a...
View ArticleHow do I create a script to do this?
I have a photoshop file with several layers...about 100. I want to put each layers into it's own group. The name of the group must be the same as the name of the layer. I tried creating a action to do...
View ArticleRe: "No Such Element". Intro to scripting.
It can take a while to learn what 'something.somethingElse.somethingDifferent' means.But it really isn't that hard and I think you will find it easy to learn with a little practice. So in a Photoshop...
View Article