Tagged Questions

6
votes
6answers
865 views

How can I improve performance when adding InDesign XMLElements via AppleScript?

I have an AppleScript program which creates XML tags and elements within an Adobe InDesign document. The data is in tables, and tagging each cell takes .5 seconds. The entire script takes several ...
4
votes
4answers
1k views

Getting website data into Adobe InDesign

I'd like our magazine team to be able to download website data in a file that Adobe InDesign can read. They can then import/open the file, make a few tweaks, and cut out a vast deal of repetitive ...
2
votes
1answer
160 views

Programmatically Inserting Data into an InDesign Document

I have to use Adobe InDesign for creating documents. We basically need to have a couple variables throughout the document (company name, project name, etc) that need to be filled in. I was wondering ...
2
votes
1answer
312 views

Web Link Buttons with Variable URLs in InDesign

My work assignment of late has been developing an interactive PDF catalog of our products that my superior can distribute digitally and let potential customers browse without accessing the website. ...
2
votes
1answer
365 views

How to create our own plugins in adobe indesign

I want to create my own plugin, Is there any tutorial available. I want to do it in java. Thanks in Advance.
2
votes
5answers
280 views

I'm looking for a better solution on importing catalog data into Adobe InDesign

The last time I produced a catalog I used a software called EasyCatalog that worked with Adobe InDesign to merge data from a spreadsheet with graphics. I wouldn’t say it was completely successful. I ...
1
vote
1answer
35 views

Actionscript - Setting minimum size of a Creative Suite extension

I'm trying to set the minimum size of the window of a creative suite extension. I don't want the user to be able to resize the window to a smaller size than the one I define. Here is what I've tried ...
1
vote
1answer
65 views

External configuration file for Indesign Plugin

I'm developing a JavaScript plugin for Indesign CS5 and I would like to be capable of configuring it from an external file (an XML one for example). Is-it possible? I haven't found anything on Adobe ...
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
1answer
172 views

InDesign Paragraph Return Character from CSV file?

I am currently using the Data Merge functions of ID CS4 to import some data I have exported from a MySQL database. Although I can set ID to remove blank lines, this doesn't always work for my purpose ...
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
265 views

HTTP request from Adobe InDesign script?

I add a button in Adobe InDesign with an action to perform request xml from restful webservice, but I couldn't find any objects like XMLHttpRequest or ActiveXObject. I don't know there is any object ...
1
vote
1answer
992 views

Reliably detecting text overflows in TextFrames in InDesign Server using javascript scripting?

I'm doing some Javascript scripting with InDesign Server at the moment. I'm having trouble trying to reliably detect overflows in TextFrames, after changing formatting or placing XML into them. For ...
0
votes
0answers
92 views

Problem using a CS4 Script in CS5

I have a CS4 InDesign script written in Javascript. I'm trying to get it to work in CS5 but having problems. I have read online that adding the line... app.scriptPreferences.version = 6.0; Will ...
0
votes
1answer
167 views

Adobe Indesign SWF Export - Hyperlinks

I've been using Indesign to create some brochures. I export them as SWF to display them as a flip book. The next step I want to take is to put hyperlinks on each product in my brochure so that when a ...
0
votes
2answers
134 views

GREP Styles in Adobe InDesign

I posted a question a few days ago about importing data to an InDesign file from a MySQL database using XML. I have looked into it and thanks to some help received from other sources think the project ...
0
votes
1answer
215 views

Importing to InDesign from XML

I have asked a similar question before, but didn't get very good results. I've looked into it a little more and I think this is the best way to tackle it. However, I'm stuck on the final part of the ...
0
votes
0answers
82 views

Can you create new custom elements in InDesign?

I need to create something like a magazine editor, which will allow several different custom elements (scroll areas, some specific animations etc.). I wonder if I can write a plugin or something to ...
0
votes
0answers
88 views

InDesign text on path problem

I'm creating a magazine in InDesign, and although I've got text on a path reasonably well, I can't get it to look like this as I intend to: http://i54.tinypic.com/e8wvmr.jpg How would I replicate ...
0
votes
1answer
809 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 = ...