Re: Panel for holding text (not notes panel) and a search internet contextual...
Hello, There is a script here.http://www.kerntiff.co.uk/products-4-indesign/notenavigatorwhich offers a different view on ID notes. P.
View ArticleScripting Book Page Numbering Options
N00B scripter here... InDesign CS6 on an iMac. I'm trying to programatically toggle page numbering options for a Book, specifically the options in the dialog shown: I'd like to be able to uncheck and...
View ArticleRe: Scripting Book Page Numbering Options
Hi, remove "properties"just myBook.automaticPagination = false; myBook.automaticPagination = true; Jarek
View ArticleOverridden master item not positioning correctly
Hello All, I'm not sure I can explain this, but here goes. I wrote a script in VB 6 that we've been using for years in CS3, for the past 6 months (after some updates) in CS6. It "autoflows" the text at...
View Articleselecting ConstrainProportions for scaling
Hi forum, Is it possible to select the Constrain proportions for scaling link button in Control panel, using script. Could forum help on this request. regrds,@ chand.
View ArticleRe: Indesign Interrogation d'une base de données
inPagina a écrit: Bonjour Pour contrôler et mettre à jour les données facilement dans le document , je vous conseille un plug-in spécifique comme Easycatalog. Il permet de se connecter à une base de...
View ArticleRe: how to make own crop marks in indesign CS5
Peter Spier, Ihopetheycanhelp AlexeyNithank you very muchIhave seen it..butIdid notfindwhatI was looking forscripthatI was lookingto putthe ColorBar.
View ArticleHow To Get an Image's Dimensions in Pixels
(For CS5, Actionscript) Hi All, I need to find an Image's native dimensions in pixels. I assumed that the Image object's DOM would have included something like ".width" and ".height". I assumed...
View ArticleRe: Adding row at a table in indesign CS6 from javascript
var mytable =myPage.textFrames.item(0).tables.item(0);alert(mytable.isValid); gave false
View ArticleRe: Adding row at a table in indesign CS6 from javascript
that means that your table does not reside in the textframes[0]. does your document has textframes on the master page applied to the said page? those apear too in the textFrames collection. Also, keep...
View ArticleRe: Adding row at a table in indesign CS6 from javascript
I am actually looping over every page in my indesign file, every page contains 1 textframe with text inside it. I add a new textframe to the page and then move the new textframe content into the...
View ArticleRe: How apply Master page using Keep current page size ?
Thanks Hurix@123 for reply What is find in your reply ? My script apply master page on page but change the page size also : var myDocument =app.activeDocument;var...
View ArticleRe: selecting ConstrainProportions for scaling
Ideas & ideas, Genius & Genius, Hi Jump_over & Vamitul.. Ofcouse, vam it looks difficult to understand at this starting point, by now and till, I try to learn the ideas of scripting....
View ArticleRe: Adding row at a table in indesign CS6 from javascript
Oh my... You are overcomplicating things a lot. more than a lot actualy. First of all, you don't NEED another textframe just to add some text to another frame....
View ArticleRe: How apply Master page using Keep current page size ?
How about a easy way out: First save the page's size in an array,then apply the masterthen resize the page to the saved dimensions.
View ArticleRe: How To Get an Image's Dimensions in Pixels
get IMAGE (not container's) dimensions using geometricBounds or use this if some more complex transformations are applied: http://www.indiscripts.com/post/2009/10/work-around-the-width-height-g...
View ArticleRe: How To Get an Image's Dimensions in Pixels
Hi Vamitul, That's a good workaround - thanks. I guess I'm just surprised that there isn't a more direct way to do this. regards,mlavie
View ArticleRe: Which of 2 numbers are closest to 0
Or this: function minMagnitude(a, b) { return Math.min (Math.abs(a), Math.abs(b))} Peter
View ArticleMake hyperlink text actual hyperlinks
We have a couple of CSV files we use for datamerging with InDesign. Some of the text in the CSV has hyperlinks in the paragraph. Since InDesign does not automatically make hyperlinks in the CSV text...
View ArticleRe: Which of 2 numbers are closest to 0
I considered that, but it actually doesn't work. minMagnitude(5,-2) should return -2, not 2.
View Article