Re: How to detect &/or delete notes in a photoshop document?
That works great. Thanks all for the great responses!!
View ArticleRe: Folder Modification
I have never run into that problem when deleting files( either with a script or with the OS ). So unless it is a Mac OS issue I would say there is something wrong with your script.
View ArticleRe: comp beauty passes together
Just so I am clear, that layer order is from bottom to top? i.e. X.VRayLighting is the bottom layer? [EDIT] And are the layers already in that order? Does the script just need to set the blend modes...
View ArticleRe: comp beauty passes together
yes so X.VRayLighting is bottom base layer the top layer is X.AOthen on top that layer is a group called "ID" the layers arent in that order but need to be in that order, yes blending modes need to be set
View ArticleDispatch UIEvent
Hello,could you please help me understanding why .dispatchEvent() used to call a radioButton 'click' callback works, while it fails when it's applied to a checkbox? Here's an example: var win = new...
View ArticleRe: comp beauty passes together
I answered this at PS-Scripts because you asked there first.
View ArticleRe: comp beauty passes together
The layers arent in that order but need to be in that order, yes blending modes need to be set. Does that make it difficult?
View ArticleRe: Dispatch UIEvent
Not sure as I don't normally use eventListeners on panels.But if you just want to simulate the cb1 onClick() event you can do this okButton.onClick = function() { cb1.notify(); }
View ArticleRe: Folder Modification
If you are willing to post your script we might be able to spot if there is an error in the script. Hard to say without seeing the code. if posted, at the least I could test it on Windows to help...
View ArticleRe: Help needed to enhance Image Processor Pro Script to save transparency in...
You can create a free account on HIGHTAIL and upload a TIFF file with the issue: https://www.hightail.com/ Post the link here and I can check it on my Windows 7 system with IPP. Someone with a Mac OS...
View ArticleRe: Dispatch UIEvent
Hi Mike,there's a slight difference between .notify() and dispatch as far as I can tell: okButton.onClick = function() { cb1.notify(); } will actually toggle the checkbox status (i.e. if it's...
View ArticleRe: Dispatch UIEvent
I wasn't sure what you were trying to do. Yes I normally use either notify() or call the function depending on what I want to do. As I said I haven't needed to use dispatchEvent(). Perhaps...
View ArticleRe: Dispatch UIEvent
Your comment made me try this one: var win = new Window ("dialog"); win.alignChildren = "left"; var panel = win.add ("panel"); panel.alignChildren = "left"; var rb1 = panel.add ("radiobutton",...
View ArticleSaving a transparent PNG
I have been trying to get my script to save off as a PNG. I am pretty sure that it is my options that are giving me the problems. Not sure if there are new terms for CS6 or if these are just wrong. Any...
View ArticleImage Processor Pro and Picture Processor load eps files without rasterizing...
Hi. My name is Lucas. Im from Argentina, now living in Brazil. I have the problem that is in the title. Im new doing this stuff but reading a lot i discovered that both scripts open eps files and...
View ArticleHow can I adjust the file names when using the "export layers to files"...
Currently the standard set up adds "_0000s_0001_" in front of the layer names that I need the new files to use. I'm processing hundreds of images so I'd like to avoid selecting and deleting the extra...
View ArticleRe: Image Processor Pro and Picture Processor load eps files without...
You can tweak ImageProcessorPro.jsx by make the following edit. Search for code that looks like this: ImageProcessor.prototype.openDocument = function(file) { var self = this; var settings =...
View ArticleRe: How can I adjust the file names when using the "export layers to files"...
That is a common request. If you look you will see a post about a week ago that shows you how to remove those extra chars.
View ArticleRe: How can I adjust the file names when using the "export layers to files"...
Thanks. I did search before posting with my same question but found nothing. I guess I don't word things the right way.Cheers,D
View Article