InDesign is Adobe's scriptable publishing software.

learn more… | top users | synonyms

0
votes
1answer
10 views

Javascript/InDesign: Check if Object has certain property

I'm using Javascript for InDesign scripting. I have an image object and want to know it's bounds (the one that the user sees) - bounds = (geometricBounds in image.parent)? ...
0
votes
1answer
21 views

InDesign scripting: How to print specific spot color in separations?

This is my most difficult question to date! I am still a beginner to ExtendScript & JavaScript, but I am learning fast. Right now, I need to figure out how to tell InDesign to print specific ...
0
votes
1answer
40 views

InDesign: ExtendScript to list fonts and extended font information

I need to list detailed information about the fonts used in a set of inDesign documents. The information I need is essentially accessible through the menu item Type › Find Fonts… (as explained here) ...
0
votes
1answer
18 views

Find text content by char style

I'm just starting with Indesign (CS5) scripting. I Try to get content (text) by char style. I made a little script, it's work when I diplay in alert the content, but not when I try to write it to a ...
-2
votes
0answers
36 views

How can I export an Indesign CS6 Folio File to Android app without having dps app builder, working on windows 7 [closed]

I may be going a little crazy, but really can't seem to fathom out the answer. as I don't have a MAC, I don't have the option of using the Adobe DPS App builder when exporting my apps designs from ...
-1
votes
0answers
28 views

How to find and replace multiple things altogether in indesign? [closed]

I'm using Indesign CS5.5. And I need to replace several things all at once. For example, there's a indesign document like this: attend v. to go purchase v. to buy I want to change this into: ...
0
votes
1answer
30 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 ...
-1
votes
0answers
18 views

Reading or modifying Title Textframe using Indesign java script [closed]

I have pages with common headers, which we placed using master page Text Variables. I need to add some text('continued') in between header Text Variables, except first page, using scripting. To ...
-1
votes
0answers
31 views

Adobe InDesign works with database or XML File? [closed]

I am looking for a plugin with which I can work on a database (mysql) with Adboe InDesign. I have found Catbase, Easy Catalog who works whith Mysql Database and InData/Xdata with CSV file. Do you ...
0
votes
0answers
4 views

Blank page not Exporting in InDesign CS6 [migrated]

I will appreciate it dearly if you can help me out with this one! I'm using InDesign and I have deliberate blank pages inserted. The problem is, InDesign does not "pick up" the blank pages when I want ...
0
votes
1answer
90 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
0answers
28 views

InDesign CS4 - Import an XML and repeat content automatically

I'm trying to import data from an XML file to an InDesign document. This works quite nice, but I only see the first entry. I attached the root tag of the XML to a box and inside there are the tags for ...
0
votes
1answer
19 views

indesign copy layer to another document

I am trying to write a script that copies a layer from one document into another. var srcDocName = 0; var destDocName = 1; var layerNameOriginal = "Original"; var layerNameCopyTo = "Destination"; ...
0
votes
1answer
13 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
21 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
29 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 ...
2
votes
0answers
22 views

Adobe Indesign (CS6) exporting pngs/jpgs with custom filenames [closed]

Does anybody know an easy way to export images (pngs, jpgs, etc.) from Adobe Indesign (CS6) with custom filenames, like it is possible to do the same in Adobe Illustrator with custom filenames.
-1
votes
0answers
26 views

Designing Windows UIs / Skins in Indesign or Illustrator? [closed]

The title says it all. I can't seem to find anything at all relating to the subject. So, I ask, is it possible to design windows controls, UIs, or even just skins in an adobe software suite?
1
vote
2answers
43 views

How can I dynamically attach a scripting label to a newly created item in basil.js?

Is there a way to add scripting labels to PageItems that are created in code, i.e. without using the Scripting Label panel? My code looks like this: var tf = b.text("Hello World", 200, 200, 300, ...
3
votes
2answers
153 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 ...
4
votes
2answers
48 views

How do I create a large pdf, semi quickly

I need to generate a large PDF, 2480 pages to be exact. Currently I am using indesign, and while the output is exactly what I want. I would rather not be involved in the document creation process. It ...
1
vote
2answers
108 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 ...
-2
votes
1answer
31 views

How to copy all the contents of various threaded textframes to another textframe in indesign with javascript?

I would need to copy all the text, formatting and images to another textframe. I've tried with text but it only copies the first textframe and not all the text from the threaded textframe. thanks
1
vote
1answer
84 views

How to set a (textFrame) pageItem in InDesign to update the position/size from the master page after it was manually changed in a page?

I have a script that does the following: var document = app.documents.item(0); var layer = document.layers.itemByName("Normal"); var allTextFrames = toArray(layer.textFrames); var ...
-1
votes
1answer
83 views

Error 13: Type mismatch

I have a example Add ins of excel: I call object InDesign as: Private Sub btnStart_Click() Dim pCnt As Integer Dim myInDesign As InDesign.Application Dim myDoc As InDesign.Document ...
1
vote
1answer
70 views

How to use Adobe Indesign API in VB.Net

I have got a sample add in for excel: I create a object InDesign.Application Dim myInDesign As InDesign.Application Dim myDoc As InDesign.Document Dim myPage As InDesign.Page ...
2
votes
1answer
61 views

Determining the relationship between Stories and Pages

A bit of background before I astart: I am by no means an InDesign expert, but I've been tasked with pulling some text information out of our company's InDesign files to do a bit of analytics. Each ...
-1
votes
1answer
37 views

How to change the sections names of a document with js? [closed]

I would need to change all the sections-prefix of a document with a script in indesign. For this I would need a way to get the section-prefix of each page and then replace with another one (that is ...
1
vote
1answer
80 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"); ...
1
vote
2answers
54 views

InDesign SDK : Can I use the SDK without installing InDesign?

First, let me clarify the question. I am dealing with InDesign documents and trying to extract information from it. I read it somewhere that Adobe InDesign loads the documents and dynamically ...
-1
votes
1answer
56 views

How do I make a Script for Indesign CS6 on Mac, that has a dropdown list of indesign templates? [closed]

How do I make a Script for Indesign CS6 on Mac, that has a dropdown list of indesign templates I have created, so I can select one from the list and it opens it in indesign?
0
votes
2answers
47 views

Creating a installation package for an Indesign JavaScript

Not sure if the heading is clear enough for what I am looking to do. But here's the explanation: I have a .jsx file, which does something. I want to create a setup file for mac and pc, just like we ...
1
vote
1answer
36 views

postitioning and sizing box with xml file in indesign

I have got a website that makes maps out of divs, the divs location and size gets pulled out of a database and then build to size and position with jquery. Now i want to make a printable version of ...
0
votes
1answer
90 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
4answers
38 views

How to load scripts from a custom folder in InDesign? like from a central repository

I would need a folder to be shared on the server and InDesign CS6 would need to load the scripts from that particular location. Is this possible?
1
vote
1answer
47 views

get and set an text element in a table with a script in indesign

I was looking about indesign scripts and I have not found anything about this topic, which I think is important. So here it is my question: - How to modify a text frame in a table in Indesign CS6 ...
0
votes
3answers
75 views

how to fix this GREP statement

I'm trying to select just the x 舌ぽう (舌鋒x) ぜっぽう (sharp) tongue じょう舌 (饒x舌) じょうぜつ garrulity, loquacity Its always in parentheses. So I want to LookBehind for a left parenthesis then zero or more ...
1
vote
1answer
111 views

Why does my form not display properly on iPhone/iPad?

I am using a form within an iPad edition of a publication, and when I select the text field of the form, it puts a duplicate form on top of the first form (see screen shot). Does anyone know why this ...
1
vote
1answer
65 views

How to apply a style to a substring of text in Indesign?

How can I select a substring of text from my Cell, so that I can apply a character style? This works fine when I'm only selecting a single character: If IsNumeric(para.Contents.ToString.Substring(0, ...
2
votes
1answer
66 views

How to require or include scripts in indesign?

How do I load another script file and run a method on it? I'm using InDesign javascript and I don't know how to include multiple files in the same script.
0
votes
1answer
231 views

How to find a text frame in Indesign CS6 with javascript? (I can query by text-frames containing a particular paragraph style or what?)

I was looking about indesign scripts and I have not found anything about this topic, which I think is important. So here it is my question: How to find a text frame in Indesign CS6 with javascript? ...
2
votes
1answer
133 views

IDML : Extract text content in proper order

I am trying to extract the text content from IDML files. What i am currently doing is - Extract the xml files, go to designmap.xml file and look for the spreads that make up the document. Spreads ...
0
votes
0answers
147 views

Indesign script geometricBounds - coordinates order [closed]

i am working the first time with indesign js-scripting and apparently Adobe puts the box-boundaries in the order [y1,x1,y2,x2]. It took me quite a while to figure that out! Now my Question: Can ...
2
votes
1answer
116 views

XSLT iterate through siblings based on attribute

I'm trying to import XML data via XSLT into Adobe InDesign. InDesign doesnt seem to be able to use attributes, even though it can see the attributes. I have access to free weather data in this format ...
1
vote
1answer
64 views

IDML : What are Kinsoku/Mojikumi tables?

I am new to the world of Adobe InDesign and IDML file format. I am trying to understand the IDML file format so that I can create IDML files dynamically through code! I am going through the IDML File ...
3
votes
1answer
187 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 ...
0
votes
0answers
53 views

How to send email from InDesign publication (DPS) with username and mobile number?

I have to solve the problem (from headhunter), but I can't find any information about even ability of that! Need to make page with any information and prepare this for DPS (OK, easy); Need to place ...
1
vote
1answer
129 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
1answer
23 views

How do I position a document in the lower left corner using Adobe InDesign CS4 Scripting?

I am a complete newbie to this scripting language. I need take a document and prior to outputting the single page document to a postscript file I need to place it in the lower left corner of the ...
2
votes
1answer
124 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 2 3 4 5 6