Tagged Questions
The extendscript tag has no wiki summary.
5
votes
1answer
387 views
Manipulating text in a TextBox in Adobe CS5
How can I do some manipulations with the text in a TextBox on resize in Adobe InDesign CS5?
The main goal is too split the last word on every row to achieve something like a custom hyphenation.
Is ...
3
votes
2answers
415 views
Anyone experienced with Adobe ExtendScript?
There's a dearth of info in the supporting PDFs and on the web. I happened to come across a post in a blog that mentioned that $.write() or $.writeln() will write a string to the javascript console. ...
2
votes
1answer
61 views
Debug jsfl in ExtendScript for Flash CS5
This is a total noob question, but I'm trying to figure out how I can debug some JSFL that I created, stepping through it as the code runs on a Flash CS5 file. The DEBUG menu dropdown in ExtendScript ...
2
votes
3answers
900 views
database use with ExtendScript (for Adobe Illustrator)
I want to refactor a VB program into ExtendScript to automate some drawing in Adobe Illustrator CS4, but have a requirement to read from a database. Is it possible to read from a database using ...
1
vote
3answers
84 views
array behaving weird when looping through it
function showMyLayers() {
var Mylayers = [
["ISO"],
["ODO"],
...
1
vote
1answer
264 views
Adobe InDesign CS5 Server JavaScript: Get rectangle by XML tag
Current set-up:
Adobe InDesign Server CS5 scripted through ExtendScript via PHP SOAP
The problem:
I'm currently placing an image file into a rectangle using the following code:
frame = ...
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
2answers
828 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
152 views
Extendscript Toolkit not stopping at breakpoints, why?
I am scripting Illustrator CS5 with the Extendscript Toolkit.
I set several breakpoints in my code, they show up as red dots next to the line number. But when I run the script, it executes all the ...
1
vote
3answers
791 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 ...
1
vote
1answer
278 views
Script to Cut Adobe Illustrator File into Tiles
I'm creating a Custom Google Map based on an image in an Adobe Illustrator file. I need to cut the file into 256px x 256px PNGs to feed into the Google Maps API.
You can write scripts to automate ...
1
vote
1answer
308 views
Javascript dialog return
I've got a javascript function that draws a dialog. I'd like to have it return the value the user specifies. The problem is, the dialog is closed when a user clicks on of two buttons, which have ...
1
vote
1answer
332 views
Is Adobe Media Encoder scriptable with ExtendScript?
Is Adobe Media Encoder (AME) Scriptable? I've heard people mention it was "officially scriptable" but I can't find any reference to its scriptable object set.
Has anyone had any experience scripting ...
1
vote
2answers
1k views
Adobe ExtendScript development - How different than regular JavaScript?
Question
I'm wondering how different ExtendScript is from JavaScript? Could I theoretically hire a web developer who has JavaScript savvy to develop it without demanding an excessive amount of ...
0
votes
1answer
40 views
Is it possible to use a local TCP/IP connection as a subsitute for standard I/O between two scripts?
Pardon my networking ignorance, but here's my problem:
I have a JavaScript document automation environment (Adobe ExtendScript) which is isolated from the rest of my system. I want basic I/O ...
0
votes
0answers
19 views
Adobe After Effects Script: Use chroma key filter on layer
I am currently scripting for After Effects using ExtendScript Toolkit
How do I apply the chroma key filter to a layer / composition?
0
votes
1answer
58 views
simple javascript loop
this is extendscript for illustrator, its basically javascript though. I want the second pop up to only show once, I tried to tell it if the variable already exists to not do it, but if it doesn't to ...
0
votes
2answers
64 views
add variable to array in a loop
using extend script to push a variable into an array it's basically javascript. any idea what I am doing wrong?
if ( app.documents.length > 0 ) {
for ( i = 0; i< ...
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
1answer
164 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
1answer
73 views
Min Max function bugs in illustrator javascript/extendscript?
Can someone explain why the following code returns different results in Safari/Javascript and Illustrator/ExtendScript?
In my tests the browser version of this seems to work as expected. Illustrator ...
0
votes
2answers
179 views
Is it safe for a javascript to overwrite itself using File.write()?
This is a javascript for Adobe ExtendScript. Basically I want to have a persistent variable in the script to store a user's preferences, like you can with an AppleScript property. The only way I could ...
0
votes
1answer
150 views
Copy text to clipboard using Extendscript
I want to write a photoshop script using ExtendScript, that copies a text to the clipboard.
Any idea? I found no information on the internet so far..
Edit: To be precise I want to use JSX ...
0
votes
0answers
106 views
How to resize/scale a ScriptUIImage?
Greetings,
for a project I need to resize a ScriptUIImage so it can be displayed in a list box in InDesign using ExtendScript.
I found some examples that override the onDraw method, but this can not ...
0
votes
1answer
396 views
Generating a footnote from selected text
I am trying to script InDesign using ExtendScript. I want the script to cut the selected text, insert a footnote and paste the text into the footnote body. What I have tried:
function ...
0
votes
1answer
769 views
How to Change Default Path of File Open Dialog?
I'm writing a script that allows me to do some basic imposition within InDesign CS3, and one of my tasks is to open a dialog allowing the user to select a file to place. I'm currently doing this with:
...
0
votes
1answer
317 views
Getting the geometric bounds of a piece of text
I have an InDesign document which has hyperlinks contained inside a text frame.
I need a way to determine the geometric bounds of the text contained in the hyperlink. Unfortunately, I can't seem to ...
0
votes
1answer
807 views
Adobe InDesign JavaScript XML: How to add XML structure tags programmatically?
This code references the root XML node, adds a FirstXMLObject under it, then adds a few fields under FirstXMLObject:
var myXMLroot = mydocument.xmlElements.item(0); // The root always exists
var b = ...
-1
votes
2answers
21 views
.replace in Javascript to replace multiple characters
var layerName = layer.name;
//replace weird characters in layer names
var layerName = layerName.replace(")", "-");
var layerName = layerName.replace("(", "-");
...