Re: Can I select things in a picture based on area?
Could you elaborate on that a little? I tried doing that calculations and all I managed to do was turn it gray scale...
View ArticleRe: Can I select things in a picture based on area?
If you look at the the green channel of the image, the information that you're interested in is somewhat contrasted against the background, by multiplying the channel with itself you increase the...
View ArticleFor loop, selections
I have a script I'm making that will select predefined color ranges (in my script, these are red, blue, and green), applying each of these selections to a new layer as a mask. For the most part, I have...
View ArticleRe: Photoshop opens dialog box when trying to fill a layer with transparent...
Not sure why that happens. But I would recommend foregoing the locking and using the AM code for a Fill that honours the transparency. #target photoshop app.bringToFront(); doc =...
View ArticleRe: For loop, selections
Does this help? It would work with RGB and Lab images as it reselects the composite via DOM by selecting the first three Channels. #target photoshop var doc = app.activeDocument; var fuzz = 200;...
View ArticleRe: Batch Processing with Multiple Actions
I suppose you could create a meta-Action that combines the seven Actions, use File > Automate > Batch and set the Source to »Folder«. But why use seven Actions if you apply them all together?
View ArticleRe: Batch Processing with Multiple Actions
I try creating the meta-action package and got a an error message when running the meta-action using the Batch dialog.In my workflow I must use Layer 0 instead of the Background layer. This is probably...
View ArticleRe: For loop, selections
Yes, this is perfect! Thanks very much. I just briefly tested it out and it works great, I'll take an even closer look tonight. A few things...doc.activeChannels = [doc.channels[0], doc.channels[1],...
View Articlecustom scripted actions for frame-by-frame animation
Hello, I'm looking into creating some custom actions for navigating Photoshop's timeline for 2D animation. My goal is to create two hot-keys (F1/F2) that move forward/backward on the timeline, and snap...
View ArticleRe: For loop, selections
doc.activeChannels = [doc.channels[0], doc.channels[1], doc.channels[2]]This selects the composite channel (the Reg, Green and Blue Channels), otherwise the Layer Mask would be the active Channel....
View ArticleHow to choose a layer in the layerset ?
Hi everyone!I used the script to the selected layers. If the layer is in a group of layers, an error occurs when you call the function:doc.activeLayer =...
View ArticleRe: Batch Processing with Multiple Actions
If the error does not occur otherwise it should not occur now. But naturally if a Layer is selected by name in an Action and no such Layer exists in a file the Action is run on that is a problem. The...
View ArticleRe: How to choose a layer in the layerset ?
With DOM code one can use a function to iterate through the LayerSets. But that can be fairly slow, depending on the file, wherefore Action Manager code may be preferable, but that can look quite...
View ArticleRe: script to import layers in other file
the "command line" sciptI don’t think the term is quite appropriate for automating task in Photoshop with Scripting. As for an introduction to Photoshop Scripting this bookPower, Speed &...
View ArticleRe: Is there a way to quickly break a single text box into multiple text boxes?
I don’t think what you want is convenient to achieve in various possible situations.Hndling different fonts, sizes and other settings would be highly cumbersome.If all the text has the same type...
View ArticleRe: Is there a way to quickly break a single text box into multiple text boxes?
Paste the code from the previous post into a new file in ExtendScript Toolkit or a text editor and save it as a jsx-file into Photoshop’s Presets/Scripts-folder. After restarting Photoshop the Script...
View ArticleHow to begin with Photoshop scripting
After years of working with Photoshop I have started to device my own Photoshop scripts to automate my workflow.My search for formal Photoshop script training produced no concrete results. In the past...
View ArticleRe: script to import layers in other file
This post might help you get started with Photoshop Scripting.How to begin with Photoshop scripting
View ArticleRe: How to begin with Photoshop scripting
Nice of you to offer this collection of links for Photoshop Scripting beginners.
View ArticleRe: Is there a way to quickly break a single text box into multiple text boxes?
So did the Script work as expected for you?
View Article