Re: add hyperlink recompose document
Hi, Jongware's solution works perfectly. I just have to take care of hyphenated text when I create rectangles. Best regards, thanks a lot,Lionel
View Article[CS5.5][AS] error "Failed to Export PDF"
Hi, Today I encountered a very strange phenomenon when exporting PDF-files from within Indesign using Applescript. A few months ago, I created a small workflow to automate pdf-file creation. All this...
View ArticleRe: cleaning up text frames
"Empty" text frame that actually contained blank spaces were giving me headaches, until one of the grep experts around here mentioned that \S is grep for "not a space". So this:...
View ArticleRe: Keystroke to Halt Listeners at Launch?
I'm actually hoping someone else will know of a secret keystroke to do as you have suggested but if not, put this in your scripts folder and run it after ID has launched....
View ArticleRe: Keystroke to Halt Listeners at Launch?
There's a workaround that'll work. :-) Thank you. Still holding out for the consummate key.
View Article[JS][CC] checking an Array using IndexOf
Hi. I have no idea if this will help others, or if I have over complicated the issue, but wanted to share a recent issue I had. I was writing a script and wanted to check the contents of an array, and...
View ArticleRe: Help with grouping and placing images
Hi!After many hours of research and coding..... I think we were successful! I am pretty new at Javascript, but not to scriptingThis code seems way to 'superfluous' to me - it seems like there are many...
View ArticleRe: Auto hyperlinktargets
Please try this: if (myXmlElm == "//uri"){ var hypStr = myElement.xmlContent.contents.replace(/\n| /g, "").toString(); var HypLink; if(hypStr.length != 0 &&...
View ArticleRe: Can I use Adobe in my own website
Hi all, Thanks you for your answers:) I will study this case and give me my feedback when the library will be open!I ope this project will have success! Have a nice day.
View ArticleRe: Move objects to new page and rotate
Hey David, Try the below script and let me know is this what you are expecting? var textFrameGroup = app.selection[0];//Should be valid selection var myitemCount = 22; var myDeg = 360; var...
View ArticleRe: Remove graphicLines
Hi Forum, Is this not possible to remove the marks, which is not centered at the top and bottom of the page. Please help on this. thanks,Uniq.
View ArticleRe: Remove graphicLines
I can't understand you requirement clearly. Can you explain in a different way?
View Article[CS5.5][JS] Replace anchored frames by library item
Hi, I have multiple documents containing many icons as anchored frames in many text flows. Now, I have to replace them by another icon from a library. Does anyone have any idea on how to replace the...
View ArticleRe: [CS5.5][JS] Replace anchored frames by library item
I found a solution... Just add...var myIS= myItem.parent.insertionPoints[0];var myImportedAsset = myAsset.placeAsset(myIS);myItem.remove();
View ArticleRe: Remove graphicLines
Hi, As far as I can understand this:your script removes all "Magenta" graphicLines,no matter where they are placed. Jarek
View ArticleRemove All InDex Markers in empty cells
I have a doc with lots of tables & empty cells. Each empty cells have an index markers in it and I need to remove all of them.The find/change replacing '^I' by '' (nothing) don’t remove them. Is...
View ArticleRe: Remove All InDex Markers in empty cells
Please be sure that you have no formatting settings in your search&find dialog. Do you really mean index markers?Please show us a screenshot with visible hidden characters. ^I (for text) works for...
View ArticleRe: Remove All InDex Markers in empty cells
The index markers are introduce when using datamerge in table. They are not associated with any topics in the Index Panel. They are not searchable. Weird! Some at Adobe are in this case. Thanks!
View ArticleRe: Remove All InDex Markers in empty cells
Can you send an example idml or inx? Otherwise perhaps you can try something like this: var aDoc = app.documents[0]; var allTables = aDoc.stories.everyItem().tables.everyItem().getElements();...
View ArticleRe: Remove All InDex Markers in empty cells
Wonderfull ! This completely remove the nasty index markers. Be blessed my friend!
View Article