Tagged Questions
The jsx tag has no wiki summary.
2
votes
1answer
705 views
RaphaëlJS, dojo.gfx, JSXgraph comparison
I'm going to build a simple math graph for a browser application. Therefore all the JS-Vector Libraries might work out well. But I want to know about any experiences you collected using those. For me ...
1
vote
0answers
13 views
InDesign server CS 5.5 app.scriptArgs.get doesn't work in jsx script
I'm working with Adobe InDesing Server CS 5.5 and having problem that *.jsx script is not able to read input parameters
I run following command:
sampleclient.exe -host localhost:8080 ...
1
vote
0answers
41 views
“Console.log” with Photoshop Scripting - ExtendedScript Toolkit
I'm doing a bit of Photoshop scripting for the first time and it sure would be great to have a console.log-like function to output array and object values in the Javascript console of the ...
1
vote
0answers
53 views
after-effects jsx RenderQueue progress
I've been searching for documentation on AfterEffect's RenderQueue for a few days now. I need to calculate the completed percentage of the queue.
In reviewing the cs3 scripting guide (the last ...
1
vote
0answers
227 views
How to Process HTTP Response to Obtain Image Content
I'm trying to integrate a web service that serves PNG images into Photoshop using JSX/ExtendScript. To accomplish this, I create a Socket (TCP) and write the user configurable parameters in the GET ...
1
vote
2answers
174 views
Adobe InDesign CS5 Scripting - Object does not support the property or method 'resolution'
Ok upgraded to CS5 and now this is not supported:
app.jpegExportPreferences.resolution = 350;
Question is how to specify resolution in CS5 since this worked in CS4?
Thanks in advance,
joe
1
vote
1answer
259 views
Is it possible to generate a thumbnail of an inDesign CS5 Document using jsx?
I am working on an InDesign CS5 plugin that needs to export a thumbnail for each page of a document. For the moment our solution consists in using Document.exportFile, making it export jpeg files with ...
1
vote
2answers
826 views
Adobe InDesign .jsx script execute .jsx script
How can I have my .jsx script when finished execute another .jsx script?
Maybe this will help understand what I am trying to do:
// WebCard.jsx file
function mySnippet(){
//<fragment>
...
1
vote
1answer
227 views
Photoshop jsx Set activeDocument to currently open document
How do you set the activeDocument to the currently open document in Photoshop jsx ?
1
vote
1answer
520 views
Photoshop: How do I run / call a JSX script from another JSX script in Photoshop?
I have variables and strings in one JSX script that I would like to use in another JSX script in Photoshop.
I wanted to just re-run the first script in the second, and get the variables in there that ...
1
vote
3answers
788 views
Is it possible to execute JSX scripts from outside ExtendScript?
Typically when you're writing a .jsx script to automate an Adobe product (like InDesign, Illustrator or Photoshop), you write, debug and execute the script from the ExtendScript IDE. Is it possible to ...
0
votes
0answers
15 views
how to pass command line argument to jsx script which launches photoshop to run this script
Plz let me know how to run the jsx script from the command line with an argument of a path to a file that is input to that jsx script, which launches the potoshot and does the processing on that input ...
0
votes
1answer
80 views
Function to show/hide layer with Photoshop script (JSX)
I am new to Photoshop scripting and writing a script that will loop through layers, trim them and export. So far I have most of all the element I need to complete this script. The only thing I can't ...
0
votes
1answer
61 views
count tabs gather data from tabbed delimited text .JSX Adobe InDesign
I need to know how to read data from tabbed delimited text file in order to export merged documents to correct location.
-- will always be 4th tab 2nd row (group number) directory will be named by ...
0
votes
1answer
114 views
InDesign Scripting how to quit application (not document)
I'm trying to automate data merge process. Here's what I have:
First of all have created a working datamerge script:
function main(){
mySnippet ();
myTeardown();
}
//<setup>
...
0
votes
0answers
34 views
Open a raw with different xmp
i have 3 different xmp file for the same raw. I would like to open that raw file with each xmp file and then save it as a jpeg. So at the end i should have 3 jpeg file per raw.
My problem is that ...
0
votes
1answer
189 views
Add Drop Shadow to text
How do I add a drop shadow (with defined distance, size etc) using Photoshop scripting?
Current JS Code
var fontSize = 14;
var fontName = "Arial-Bold"; // NB: must be postscript name of font!
// ...
0
votes
1answer
162 views
Script that rotates a PNG in Photoshop?
I have the following Photoshop ExtendScript (.jsx) script which rotates the image canvas, but doesn't rotate the contents:
var doc = app.open(...); // open the .png file
if (doc.width > ...
0
votes
0answers
128 views
JavaScript function not called on Image click when browser is restore down
In my GI Application, On Image click I am calling myJavaScriptFunction.
It works well i.e able to execute myJavaScriptFunctoin when browser window is maximized.
But In other case i.e when I minimized ...
0
votes
2answers
320 views
How do I get the position of the selected Illustrator PathItem in pixels using?
I have a simple problem, but can't seem to find my way around it:
I have PathItem and Illustrator points out that it is at position (781px,250px).
How can I get those values in jsx ?
I've noticed ...
0
votes
1answer
220 views
Photoshop JSX — Using Split Method on Array, why does one not work and the other work?
I have this code which generates an array of information on where the guidelines are set in any Photoshop document.
var guides = app.activeDocument.guides;// get the current doc's guides
var ...
0
votes
2answers
1k views
Automate Batch Script - Convert filenames to text in Photoshop
How do you convert each filename of a bunch of files, each to a text layer (and save) in Photoshop?
Folder 1: Hundereds of files
Folder 2: Nearly the same files, but each with its filename ...
0
votes
1answer
479 views
Photoshop JSX — How do I copy arbitrary text to the clipboard?
Right now I am using the prompt command as a workaround to copy arbitrary text out of my JSX script in Photoshop.
prompt("to copy",(horizontalcenter.toString()) + ", " + verticalcenter.toString());
...
0
votes
2answers
380 views
photoshop javascript scripting question
This following script almost does what I need. What I'm trying to do is go through the opened documents, 139 of them, and save them as jpeg. However what it's lacking is moving from one opened ...
0
votes
1answer
512 views
Photoshop script to get the color of a solid fill layer?
I'm trying to write a Photoshop jsx script for extracting color values from a PSD template. The colors are defined as separate fill layers that I'd like to be able to loop through and create a hash of ...
0
votes
2answers
826 views
Photoshop JSX script- CLOSE PHOTOSHOP!
How do I close photoshop using its javascript scripting language. (I am automaticly scripting a great deal of things, and I notice that for one reason or another, some of the ram is not releasing with ...
0
votes
2answers
524 views
How to automate Photoshop?
I am trying to automate the process of scanning/cropping photos in Photoshop. I need to scan 3 photos at a time, then use Photoshop's Crop and Straighten Photos command, which creates 3 separate ...