Extendscript is a scripting language based on ECMAScript for scripting Adobe products (Adobe Photoshop, Illustrator etc).

learn more… | top users | synonyms

1
vote
0answers
14 views

Using Extendscript to Import a Visio Object By Reference into FrameMaker

My colleagues and I import our Visio files into FrameMaker via the following mechanism: File > Import > Object... > Create from File (with Link checked). I want to accomplish the same action using ...
0
votes
0answers
13 views

Extendscript InDesign CS6: Print using a print preset

This one should be simple enough for you Javascript/Extendscript wizards. I want to print a document using a print preset, while also specifying a page range (and maybe other options as well, after ...
0
votes
1answer
23 views

Getting the current user name or computer name in Extendscript

I'm finally getting some headway made in my script for InDesign CS6. Now, in order for it to know to which printer it should print a document, I need to query which computer the script is running on. ...
0
votes
0answers
10 views

ExtendScript - Can you listen for/change keypress behavior?

I can imagine a lot of different angles to this, but here is my goal: When I use the [blob brush] tool in [Illustrator] I want the option key to toggle the eyedropper tool. I figure the specific ...
0
votes
1answer
38 views

Ordering of bidimensional array

Hello I have the following question: I have a bidimensional array which look like this: [[2, C, 22, 22, 8] [2, C, 22, 22, 7] [2, C, 22, 22, 10] [1, R, 45, 45, 4] [1, R, 45, 45, 3] [1, R, 45, 45, 2] ...
0
votes
1answer
82 views

Javascript code to open several files in subdirectories

I'm a fairly new programmer, so please bear with me. I'm attempting something pretty advanced, but I enjoy a good challenge. :~) I'm using Adobe's ESTK (ExtendScript Toolkit) to write a complex ...
0
votes
1answer
11 views

How to replace selected text in InDesign via script?

In my scripted UI panel, I have a button that is supposed to insert some text. I came up with this routine, which, indeed, inserts whatever text wherever I want, but if there is any text already ...
2
votes
1answer
18 views

How to detect shift down when clicking on ScriptUI button?

On my scriptUI panel, I have a button. How can I detect whether the user is holding the shift key when they click on the button?
1
vote
1answer
27 views

How to detect right-click on script UI button?

Using Adobe InDesign's extendscript (javascript language), how can I add an onClick function for both left AND right click events? Adding the left-click event is easy. How do I add the right-click ...
3
votes
2answers
150 views

Getting the stack trace of an error in ExtendScript

When I catch an error in ExtendScript, I would like to be able to log its stack trace. It appears that errors do not contain stack traces in ExtendScript, so I'm playing around with the idea of adding ...
0
votes
2answers
51 views

Pass message from javascript to application - Windows and Mac OSx - Lazarus

I need a javascript function to trigger a function in an application developed in Lazarus for both OSx and windows. I'm learning Lazarus and I'd describe myself as a medium level beginner. I know ...
1
vote
2answers
99 views

ExtendScript: How to add InDesign DOM to ExtendScript Object Model Viewer?

I have just started with Adobe InDesign scripting. I saw at another developer's windows system - he would click on Help->Object Model Viewer (Adobe ExtendScript Toolkit) and there were multiple ...
1
vote
0answers
18 views

Script autorun in after effects

I'm about to create an After Effects script. In future, I would like to make it autorun at a certain point of a day (every hour perhaps). How can I autorun a script or series of scritps ? Is there ...
1
vote
1answer
78 views

When is “var” parsed?

Sometimes var affects code before it, and sometimes not. Take this example: base.jsx: $.global.a = 1; $.writeln("a: " + a); var a = 2; Running this prints a: 1. Running $.evalFile("base.jsx"); ...
0
votes
1answer
85 views

indesign script to set font based on xml parent's attribute

I am trying to find an Indesign javascript that can set the font and style based on the import XML parent's attribute, <product> <language ...
0
votes
1answer
31 views

Adobe ExtendScript Change Brush Size

Is it possible to change the brush size in Photoshop via ExtendScript? I'm looking all through their documentation and Googling to no avail. Any help would be appreciated!
1
vote
3answers
64 views

RegEx for filling up string

I have the following input: 123456_r.xyz 12345_32423_131.xyz 1235.xyz 237213_21_mmm.xyz And now I need to fill up the first connected numbers to 8 numbers leading with 0: 00123456_r.xyz ...
0
votes
2answers
130 views

batch convert images to binary strings

I'm trying to batch convert images to binary strings for use in Adobe ExtendScript Panels. The result I'm want to get is a String that looks like this: ...
3
votes
1answer
179 views

What is the difference between app.doScript and $.evalFile?

The only difference I have found so far: If a script that is run by app.doScript returns an error, the file and line number of the error are overridden by the file and line number of the app.doScript ...
1
vote
1answer
128 views

Retrieving the correct length and width for indesign exported .png

I am trying write a javascript application to output the length and width of a selected image/group in indesign (CS5) and save the selection to a .png file. The problem is that the length and width ...
0
votes
0answers
39 views

Random Delete tool with Scriptographer

I am trying to refine the RandomTools created for Scriptographer so that it suits my preference, but I can't figure it out in Javascript. Not knowing a lot of Javascript don't help me either! Here is ...
2
votes
1answer
120 views

Adobe socket object not working with proxy

Trying to get Adobe's Socket object up and running. I have this code: var reply = ""; var conn = new Socket; // access Adobe’s home page if (conn.open("www.adobe.com:80")) { // send a HTTP GET ...
1
vote
0answers
49 views

Is After Effects object model available for testing outside of Adobe ExtendScript Toolkit?

I am actually writing a script, which I prefer to test in my browser with Javascript tools such as Live Reload, Mocha.js and Google Chrome's inspector. Although, my browser legitimately returns me ...
0
votes
1answer
45 views

How to use aiBringToFront in Illustrator Extendscript?

In Illustrator, I want to create a function in one of my scripts for Bring to Front. In the CS5 Type Library, I find the object, AiZOrderMethod.aiBringToFront, however, I can't figure out how to use ...
1
vote
1answer
325 views

After Effects / ExtendScript: Using libraries and importing .jsx files?

I am new to After Effects scripting but have much experience with JavaScript in the browser. How do I import .jsx files? Can I use js libraries such as underscore.js etc? What are some good ...
1
vote
0answers
57 views

Extendscript photoshop version errors

I am using extendscript with Photoshop, but when the version mismatch happens, Photoshop pops up a dialog I just want it to keep the layers and proceed. How do I tell Extendscript to do that?
1
vote
2answers
184 views

How to call a python or shell script from within Extendscript?

I have a python script that needs to be called from within an Extendscript script. Is there any library function available which can do this? I tried finding a solution in the documentation and many ...
1
vote
3answers
127 views

Saving per-user or per-document preferences in a Photoshop script

I'm working on a Photoshop script in JavaScript using ExtendScript. My script allows some user input, and I'd like to save it between uses. That is, I'm looking for a way to save a simple string or ...
2
votes
1answer
69 views

How do I debug a script relying heavily on an existing Illustrator document?

I'm using Adobe Illustrator CS5 and ExtendScript Toolkit CS5. I've got a very involved script and alert() isn't working anymore because stuff is within a loop. How can I simulate the fact that I'm ...
0
votes
2answers
90 views

ExtendScript's UnitValue

So I can't find, for the life of me, a clear breakdown of the components of ExtendScript's UnitValue object. Every source I found had something to do with Adobe, and didn't explain it. I'd really like ...
1
vote
2answers
137 views

InDesign scripting of the Socket object yields cryptic error message

I'm working on a broadcast e-mail template that would pull the latest three articles off our blog from an RSS feed and insert the relevant sections into the document. I looked at the documentation, ...
0
votes
2answers
115 views

Is there a reference for ExtendScript action ID codes?

There is a section called "Appendix A: Event ID Codes" at the end of the ADOBE PHOTOSHOP CS6 JAVASCRIPT SCRIPTING REFERENCE. Is there something similar but not just for events? For example, I'm using ...
2
votes
1answer
157 views

What is #targetengine?

My only prior experience with #targetengine is when I've used #targetengine "session"; to turn a dialog into a palette when scripting in InDesign. But as I'm trying to figure out how to script a menu, ...
0
votes
2answers
121 views

Moving selection relatively from current position

I'd like to move a selection I made through the whole document by its width amount (var x2) relatively to its current position. It seems there was a translate function in earlier versions that did ...
2
votes
3answers
189 views

Getting text layer shadow parameters (ExtendScript CS5, Photoshop scripting)

Is there any way to get text(or any other) layer shadow params in Adobe Photoshop CS5 using ExtendScript for further convertion to CSS3 like text string? Thanks!
1
vote
1answer
243 views

indesign export cropped jpeg script [closed]

I found and tried this Indesign JavaScript for exporting jpeg images: Indesign CS6 Scripting - Exporting images It's very useful, but would it be possible to choose a folder to save the jpeg in? My ...
0
votes
1answer
151 views

How do I programmatically capture and replicate Ai path shape?

I'm using ExtendScript for scripting Adobe Illustrator. I was wondering if there was a sneaky way or a script available to programmatically capture and then replicate a path shape, sort of ...
0
votes
1answer
50 views

Accounting for vertical slope

I'm not a programmer primarily, so this might be a simple answer. I'm working on a script in Illustrator where you select three points and then it does stuff. First it makes a triangle. Then, it ...
0
votes
0answers
106 views

Illustrator placedItem.embed() bug? scales to original size

I have a script that finds goes to all placedItems and embeds them. My code is simple enough: function embedAllImages(){ placedArt = app.activeDocument.placedItems; if (placedArt < 0) { ...
0
votes
1answer
110 views

How to find Shape of the textframe

I have three textframes with different shapes. One is regular rectangular frame, other is oval and last one is triangular textframe. I want to find the shape of the text frame. Do anyone know how to ...
0
votes
1answer
106 views

select / cut / pasteInto when window not visible

I'm working on a script where I take a business card design and use it to generate a sheet of paper that has ten cards on it to match a template to print temporary cards. The tricky part here is the ...
0
votes
1answer
258 views

InDesign CS5 Script: How can I automate “Alt + click” on the XML structure pane?

I have this script, which is displaying the  View --> Show Structure  pane: with(obj.doc.xmlViewPreferences) { // this opens the View --> Show Structure pane showStructure = ...
0
votes
2answers
300 views

How do I quit InDesign and open Illustrator using InDesign scripting?

How do I quit InDesign and open Illustrator using InDesign scripting? This is my code: // closing the InDesign document here myDocument.close(SaveOptions.NO); // change the script's target to ...
0
votes
1answer
615 views

InDesign CS5 Script: How can I close all modal dialog windows in a document?

     When a document does not have any modal dialog window messages,  app.activeDocument.close(SaveOptions.no)  works fine.      However, ...
0
votes
3answers
376 views

InDesign CS5 Script: How can I ignore the DTD when importing XML?

I am importing XML into InDesign, and I get this message: The external entity 'blahblah.dtd' cannot be found. Continue to import anyway? And when I then continue to import the XML, I get this ...
0
votes
1answer
139 views

Using Adobe ExtendScript (Ext JS) to read a variable and rotate a shape

I'm using the variables panel in Illustrator to pull a data set I've got. For example there's 2 text variables and 1 number going from 0-359. I'm looking for a script which looks at the variable name ...
0
votes
3answers
340 views

Illustrator script for Flip Horizontal

Salvete! I have searched high and low, but can't figure out how to use Extendscript (jsx) to flip a single, selected object horizontally. Can anyone help? Surely this isn't a difficult one!
2
votes
1answer
283 views

How to Create a Custom Menu for Illustrator Using Extendscript?

Salvete! With Adobe InDesign, it is easy to create custom menus using extendscript and simply drop it into your Startup Scripts folder - you get custom menu commands that way and it works like a ...
0
votes
1answer
278 views

InDesign CS5 Script: How can I place another InDesign document into a new InDesign document?

I am creating a new InDesign document with  var newDoc = app.documents.add() . I am trying to place another pre-existing InDesign document that has paragraph styles into the new document. ...
0
votes
1answer
372 views

InDesign CS5 Script: opening a document is unresponsive, and isn't throwing an error?

I am using the method  myFile.execute()  to open an InDesign document programmatically (in this case, it is a blank document with styles applied to it). The document is sometimes opened, ...

1 2 3