Re: Batch or script..plug-in?
It works.. Thank you so so much for your help! This is great work! One very happy person.
View ArticleRe: How can I send events with a script ?
Well now I know you can't send events I'll still explain why you should be able to. I think events are used to keep in sync with photoshop's state. If you want to know when color changes, you want to...
View ArticleRe: Batch or script..plug-in?
You’re welcome. As it is the Script should open one image, but place the others as Smart Objects. One could amend to Script to either place them all, copy paste the others or rasterize the SOs after...
View ArticleRe: Scripting for yearbook pages. As a complete newbie, how should I go about...
I doubt a custom Script should prove necessary, please check out the chapter »Creating data-driven graphics« in the Help. And don’t forget that to get vector/type output for printing you will have to...
View ArticleRe: Scripting: upper limit on number of points in clipping path to be...
Great! We all get locked into one direction at times. I know I do. Glad it worked out.
View ArticleRe: syntax error var retVal = false;
There are several debugging features in ESTK. I typically just create small amounts of code and check to make sure they work. The use of: alert to generate a dialog box with a suspected problem is...
View ArticleRe: Scripting for yearbook pages. As a complete newbie, how should I go about...
If you make a template PSD file with text and image layers. You should be able to define Photoshop variables for these layers. What you would the need a CSV file that has a column for each variable...
View ArticleRe: syntax error var retVal = false;
I will review the debugging section in the JavaScript Tools Guide to learn the debuging features. Thanks for the back!
View ArticleLink Photoshop as a Image Editor module in C++ based application
Sorry... But I'm new to Photoshop scripting. I wish to link Photoshop with my application (Developed on Qt Framework with C++ language). Major requirement is:- My Application shall call Photoshop with...
View ArticleAction scripts to save as with layer name
I need to write an action script to turn on a layer and then Save As or Save for the Web and have it automatically name the file by adding the visible layer name to the end of the file name. Is this...
View ArticleRe: Action scripts to save as with layer name
This sounds like what Generator all ready does. What are you trying to do that different from Generator?
View ArticleRe: Action scripts to save as with layer name
Well I actually didn't know about Generator until now.. but it doesnt do exactly what I want... unless I add a bunch more duplicated layers and group them differently. What I am looking to do is have...
View ArticleRe: Action scripts to save as with layer name
BTW, I have a the desktop version of Photoshop CS6 not CC. Is there a download?
View ArticleRe: Action scripts to save as with layer name
No, there isn't a download for CS6. I'm not sure of your layer structure. Are any of these layers in groups? If not, you can just loop through the layers by using your example of starting with the...
View ArticleRe: Action scripts to save as with layer name
This is the code var doc = activeDocumentfor(i=doc.layers.length-6;i>-1;i--){doc.layers[i].visible = truevar docName = doc.name.split(',')[0] + '_' + doc.layers[i].name //put the rest of your code...
View ArticleRe: Action scripts to save as with layer name
Great. Thanks! I will give this a try... but I did end up upgrading to CC to give Generator a try. Now that I have it, can you tell me if the best/fastest way to get all the images I need? Do I need to...
View ArticleRe: Link Photoshop as a Image Editor module in C++ based application
I’m afraid with C++ matters you may not get a lot of help here. JavaScript could be used to open a file and in Photoshop the Save Event could be linked to quitting Photoshop (File > Scripts >...
View ArticleRe: Action scripts to save as with layer name
For what you're trying to do, I don't think Generator will work, and a script would be better.
View ArticleRe: Needed: snippet of jsx code to Rename an Action Step? Rename an Action Set?
Ok, different tactic: is there any reason to believe that it should NOT be possible to rename an action step?
View ArticleRe: Needed: snippet of jsx code to Rename an Action Step? Rename an Action Set?
is there any reason to believe that it should NOT be possible to rename an action step?Yes. For one thing I don’t know how to rename the steps in an Action manually either. If you actually mean »rename...
View Article