Selected elements from list to separate text frame
Hi, Could somebody please help find a solution to this? In the linked picture you will see a numbered list with each line in the list starting with a 4 digit code (magenta), there is also a colour...
View ArticleRegEx Lazy mode bug in CS5
Hello, it seems that sometimes, lazy mode regex doesn't work in CS5. Following this discussion: http://forums.adobe.com/message/4007138 I would like to understand how can I create a regex code for the...
View ArticleRe: Viewing or printing a list of hyperlinks contained in a document
A different approachMakes a new document with a table of the open documents URL hyperlinks.The new document can be exported to a pdf and the hyperlinks tested. Example of produced new document table....
View ArticleRe: [basiljs] remove all pages except one
Hi, i do removing many pages in indesign with use documentPreferences.pagesPerDocument (faster)use while or for loopclose doc without saving, and open again. (in some case) here is test code, run with...
View ArticleRe: RegEx Lazy mode bug in CS5
I'm not too sure about the limitations of ExtendScript's implementation of regular expressions, but this regex should work: \d+(\.\d\d\d)*(,\d+)? If the problem with (\d+)? is the question mark, you...
View ArticleRe: Selected elements from list to separate text frame
Hi, If your sourceTextFrame is named "source"and your outputTextFrame is named "output"you can use it (or change the way of detecting text frames): var mDoc = app.activeDocument; var source =...
View ArticleRe: [basiljs] remove all pages except one
looks promosing! How can i do this on the current document?I tried: var doc = app.documents.current(); And i did found a html reference for indesign but if i did a search on app i had more then 500...
View ArticleRe: [basiljs] remove all pages except one
thanks! so in short: var doc = app.activeDocument; doc.documentPreferences.pagesPerDocument = 1;
View ArticleRe: Data Merge not picking up all data fields
Hi, As far as I know you need in fact a script to replace 'plain text' with dataMergeTextPlaceholders. a small example; Array.prototype.find = function (string) { for (var s = 0; s < this.length;...
View ArticleRe: Place library asset
Hi Beginner_X Thanks for your support, var myTextMove = myFound[k].texts[0].move(LocationOptions.AT_END, myLibraryAsset.insertionPoints[-1]) Object Dose not support "InsertionPoints". I changed Like...
View ArticleHow do I print specific spot color(s) in separations?
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 pages of the active document using a printer...
View ArticleRe: How do I print specific spot color(s) in separations?
Hi, I am afraid you have to create and save your custom printerPreset in UI for custom separations.You can use it while calling document.print() method (second parameter) rgdsJarek
View ArticleHow to get exact values.
Hi Forum, I'm trying to get page margin Width and Height as a text in slug area. When I minus the pagewidh with pagemargin, i'm getting values in fractions like this. eg. 177.43999999. When i draw a...
View ArticleRe: Data Merge not picking up all data fields
Ran a test using this, I'm no ID expert so it took a bit of thinking.. however, it worked flawlessly so thank you! Ideally now, if I can link all of the frames together (only a couple run onto a second...
View ArticleRe: Selected elements from list to separate text frame
Hi Jump_Over, Thank you very much for the reply. This looks promising, however I could not get it to work. I named the source text frame 'source' in the 'script label' panel and likewise the output as...
View ArticleHow to get all the font names in a text file?
Hi All, Is there any way to get the names of the used fonts in pdf to a text file? Thanks in advanceChinna
View ArticleRe: Data Merge not picking up all data fields
Hi, If you tell more about targered text boxes it could be easy modyfied, Could the boxes be named?orScript could replace all "<<..>>" occurences inside entire doc if it is safe from your...
View ArticleRe: Selected elements from list to separate text frame
Hi, use "Layer" panel to name the boxes Jarek
View Article