Re: Go back to certain insertionpoint
@ Jarek Thx for your suggestions. I will implement these (and some lines from Uwe) to my script. @Jarek & UweYou guys helped me so well!!Maybe you noticed I'm not a programmer but with your help...
View ArticleRe: find and remove text frames with same geometricBounds
Hi, According to my understanding, frame which having the equal widthxheight need to be remove, sorry if it’s not match your requirement. ============================ var mySelection =...
View ArticleRe: Exporting each articles button names to an Excel Spread Sheet or other form
@John – for all the mentioned cases: yes, it will not work for: Buttons that are groupedButtons inside other objects like rectangles, MSOs etc. It will only work for buttons that just sit on pages...
View ArticleRemove specific elements
Hi everybody , I'm trying a little script in Javascript for InDesign. Before exporting my final PDF from InDesign, i want delete all TextFrame empty and Graphic item with link to a specific image (...
View ArticleRe: Remove specific elements
I think I know what the problem is with this code. You can lock and hide a *regular* page item, but not an image. An Image is something *inside* a regular page item; it's something you select with the...
View ArticleRe: Remove specific elements
There are no error while script is working, but the layer don't lock and don't hide at end. And some graphic and text frame aren't scanned by the script. Only one is find.How specifically lock the item...
View ArticleRe: Script for ID Dictionary
Hi, Jongware. First of all, thank you very much for your script. As usual “Jongware ROCKS”.I apologize for being all this days without answering to your post but I took a few days for resting and I...
View Articlewant to output the text of an index marker at the same position of the index...
Hello. I want to output the text of index markers at the same position of the index markers, using InDesign JavaScript. There are two ways are in my mind now.1. Use Indexes Objects, looping through...
View ArticleRe: want to output the text of an index marker at the same position of the...
poopwowwo wrote: 1. Use Indexes Objects, looping through them. In this way, you can get the contents text of Index markers, but you cannot get the position which you can use to insert the text....
View ArticleRe: Exporting each articles button names to an Excel Spread Sheet or other form
I have not tried it out because I had seen the discousion yesterday. The script will need to pull the names of all buttons.
View ArticleImporting word file into InDesign problems
I use the following code:myText.Place("C:\Development\memoTest Assignments\temp.docx"), the doc file will become Objective Experience Education Statementalthough original doc file is Objective...
View ArticleRe: find and remove text frames with same geometricBounds
Thanks Bala, this is exactly what i mean ...but testing the script (indesign cs6) something is going wrong.Not all frames (with same dimensions) are removed.Have a better situation using "parseInt"...
View ArticleHelp! Need to change all endnote numbers to roman numerals quick and easy.
I have a document with about 150 endnotes (not footnotes) (yuck). When I brought it into indesign CS5.5 from word, it automatically changed all the numbers to regular 1-2-3-etc numbers. I was grateful...
View ArticleRe: Help! Need to change all endnote numbers to roman numerals quick and easy.
Hi, paste example and desired format, pls
View ArticleRe: Help! Need to change all endnote numbers to roman numerals quick and easy.
Here's what I don't want:Here's what I want: Lowercase Roman Numerals: Thank you!
View ArticleScript for textfield app
For an education-app I'm making in inDesign and DPS I'm looking for a good way to make textfields for the user where the input stays. So the user must be able to answer questions and the answers must...
View ArticleRe: Help! Need to change all endnote numbers to roman numerals quick and easy.
Hi, try this: var myDoc = app.activeDocument; app.findGrepPreferences = null; app.findGrepPreferences.findWhat = "\\d+"; app.findGrepPreferences.position = Position.SUPERSCRIPT; var...
View ArticleRe: find and remove text frames with same geometricBounds
ok Bala ...due to decimal differences some frames weren't removed.I solved with "Math.round" in place of "Number" =================== var mySelection =...
View ArticleRe: want to output the text of an index marker at the same position of the...
Jongware-san, You have kindly helped me so much. Thank you so much. I appreciate it. By the way,Your sample code did not work at first.After replacing ".topics" with ".allTopics", it did work....
View Article