Re: Select all layers with the same name
It’s no Scripting solution but couldn’t the Layer Filter in the Layers Panel be used manually? Otherwise you have to loop thoroug all the layers in the document and collect matching names. That is...
View ArticleRe: Select all layers with the same name
Unique layer names will be a pain and prone to usererror, I was hoping to make an action that would just always work without having to train people to name the layers in very specific ways.Still, if no...
View ArticleRe: Select all layers with the same name
I'm not sure what you mean by Layer Filter, are you talking about the new feature in cs6? IIt was introduced in CS6. Edit: Sorry, I had paid no attention to the reference to CS5 in the original post,...
View ArticleResize Layer with action but not in %
Hi,if i register an action to resize a layer in inches or in pixel, the action will be registered only in %.So if i would like to resize many layer with different dimensions, i can't have all in the...
View ArticleRe: Resize Layer with action but not in %
Hi Vincenzo,have you tried switching ruler's units to Pixels before recording the action? Davidewww.davidebarranca.com
View ArticleRe: Resize Layer with action but not in %
yes, Davide, but photoshop register the action only in %
View ArticleHow to save layers with cropping?
I want to export layers to files (basically what "Export Layers To Files.jsx" does) but with cropping each layer (to different sizes). I know how to crop a document from script, but that also crops all...
View ArticleRe: How to save layers with cropping?
There's only one crop availble per document. The only other option would be a layer mask.
View ArticleRe: How to save layers with cropping?
Layer masks hide pixels but I need the exported images to be cropped (different size). So my only option is to copy the layer, create a new document, crop it, save it and then return to the original...
View ArticleRe: How to save layers with cropping?
Well, it might be a roundabout way of getting what you want, but if you use the layer mask method, you could make the script create a selection of the layer mask or vector mask. Then you can get the...
View ArticleRe: Select all layers with the same name
c.pfaffenbichler wrote:Well, the Action Manager code approaches that (if I remeber correctly) you and Paul have presented seem fairly quick in contrast to DOM-approaches. Yes Action Manager can be...
View ArticleRe: How to save layers with cropping?
You could dupe to new document and trim transparent pixels to do the crop. Or hide the other layers and trim.
View ArticleRe: How to save layers with cropping?
That's what I was thinking too, Mike, but the OP wants to keep the pixels that are cropped out.
View ArticleRe: Batch HDR Merging/Toning Script
Hi Lucas, I haven't got any problem with 'Align' & "De-ghost' applied on hand-held photos, are you sure to use the latest version (get it again from GITHUB). You may get an error...
View ArticleRe: Batch HDR Merging/Toning Script
Hi David, I have done a small change from the latest version again :To have the same behavior than "sourceBrowse.onClick" (copy to outputBox), I changed this : //event handlers...
View ArticleRe: How to save layers with cropping?
I'm not sure if you understood me. I have multiple layers in a document, and I want to trim each layer separately and save it to a file. For instance let's say I have a doc with 2 layers: first layer...
View ArticleRe: How to save layers with cropping?
Seems to me that you only need to keep the cropped pixels because of way you want to do this. However if you want to do it this way you could create a history snapshot, crop and save the first layer....
View ArticleRe: Resize Layer with action but not in %
I don't think you will be able to do this by actions alone. You will need a script that can do the needed math to convert your desired size in pixels( or inches ) to percent. In the GUI you can enter...
View ArticleRe: How to save layers with cropping?
Damn, I was actually about to ask if I could do a Ctrl+Z (Undo) programmatically but I thought it wasn't possible. But since I've already implemented the duplication-approach and it works, my question...
View ArticleRe: How to save layers with cropping?
the.real.nps wrote:But since I've already implemented the duplication-approach and it works, my question is - would restoring history states be significantly faster than the first approach?I think...
View Article