Re: Scripting and automation advice - Batch processing and final naming
Thank you csuebele. Do you think I should redo all my steps in a script or should I try to figure out how to write a script to supplement the PS Action? I tried using PS Automate Batch and the standard...
View ArticleRe: Scripting and automation advice - Batch processing and final naming
I tend to like to have everything in a script, just so you don't lose links to actions, but you can do it either way. Using the scriptListener code is pretty easy, and much like creating an action,...
View ArticleRe: Scripting and automation advice - Batch processing and final naming
Interesting. Never heard of this. Googling it now. Thank you!
View ArticleRe: Scripting and automation advice - Batch processing and final naming
In many of these threads, you'll see comments regarding "Action Manager" code vs "DOM" code. The action manage code is the type generated by the scriptListener. Sometimes it's a bit hard to figure...
View ArticleRe: Can I select non-rectangular regions / arrays using a script?
Hi sharmon94, I'm not familar with VB.But here is an example in JS. // SelectRegion.jsx app.preferences.rulerUnits = Units.PIXELS; var aDoc = app.documents.add (500, 500) ; aDoc.selection.select ([...
View ArticleInsert 'illegal' characters into file name for print label?
Hey all (Happy New Year) I actually see some people here who helped me with this originally so many years ago (hi 'x'). Any way, I'm using this .js file to annotate aerial imagery prior to printing,...
View ArticleRe: Insert 'illegal' characters into file name for print label?
I did some quick testing and here is what I have seen. I went into a cygwin shell and successfully did this: $ touch t\"est\'t.jpg$ ls t\"*t"est't.jpg This means that the underlying file system (NTFS)...
View ArticleRe: Insert 'illegal' characters into file name for print label?
Thanks so much for the reply. "The string stuff is easy, but while you can save a file with ' and . you can't use " via js. You can't even do it using the PS UI manually." That first period chops off...
View ArticleRe: Insert 'illegal' characters into file name for print label?
That first period chops off anything after it because the script thinks that's that start of the file .ext. This can be fixed. Post the relevant chunk of code. Getting a file extensions from a filename...
View ArticlePassing Options to File.execute
I'm trying to make a GUI for my command line tool using ExtendScript CS6 (Photoshop Script) at the moment I'm able to execute the file via... var myFile = File("/c/path/to/my/tool.exe");...
View ArticleRe: Insert 'illegal' characters into file name for print label?
Thanks again The code I'm using is is at the beginning of the post and here (Film CP w-2 layers 360.js). If I had a preference I suppose I'd want to deal with the period (.) the same way as the (') and...
View ArticleRe: Scripting and automation advice - Batch processing and final naming
I'm not sure I can accomplish this for the entire flow. Perhaps someone could point me in the right direction on adding to the beginning and end of the workflow? Particularly saving each mockup with a...
View ArticleRe: Insert 'illegal' characters into file name for print label?
Here is the replacement code: // The following code strips the extension and writes tha text layer. // fname = file name only fname = docRef.name; fname =...
View Articlescripting support
I need an updated scripting support to run with YSI album building software and CS6 the only version I can find is Adobe Photoshop Scripting Support 1.0.2a.Thanks
View ArticleRe: How to call Edit->Auto-Blend Layers ?
Yes it does thanks. In the end I decided to just use an Action to automate what I needed - much easier and simpler this way. cheers-d
View ArticleRe: How to assign the event onClick to the panel?
I don't can used Colorpicker :-(Help me ! myIconButton.onClick = function() { myIconButtonStatictext.text = "Color 1 selected !"; myEditTextStatictext.text = "color 2"; selectedColor =...
View ArticleRe: How to assign the event onClick to the panel?
//~ for ScriptUI a color is an Array of Number String//~ A) If type is SOLID_COLOR, the color expressed as an array of three or four values, in the form [R, B, G, A] //~ specifying the red, green,...
View Article