Re: Is there a way to get plugin version via Javascript?
Only if the plug-in provides the information by extending the object model with a property -- at least, I believe that's the case. I've not seen many that do, but then, I've not looked. Dave
View ArticleRe: Is there a way to get plugin version via Javascript?
mostly what Dave said. however you can fake it a bit.. when creating a package you have the option of generating a report that includes a list of external plugins. that might help. realy simple if your...
View ArticleRe: Is there a way to get plugin version via Javascript?
Ah, ok, thanks. I'm looking at expanding our interface to include a get version method, I think that's probably the best way to go.
View ArticleRe: Cant able to relink
Hi Dave, After adding a Folder, now also, it is not relinking.... please advice and help... var aDoc = app.activeDocument.links;myS = Folder((app.activeDocument.filePath).parent + "/Links/"); //the...
View ArticleRe: Cant able to relink
try this...... var myFolder = Folder(app.activeDocument.filePath.parent+"/XXXX/"); // set you destinationvar new_path = myFolder+ '/'imgs = app.activeDocument.allGraphicsfor (i = 0; i <...
View ArticleHyphenation Points
Hello! In InD I can select the "Edit" menu, then "Spelling," then "User Dictionary" and hit the "Hyphenate" button to see where InDesign would hyphenate that word. I didn't readily see anything in the...
View Articlebuild dialog user interface
Hi all, I'm building my first UI with javascript and Indesign. Unfortunatly, I don't understand how to align the static text label with the editext label…My goal is to align the labelBitmap,...
View ArticleRe: Cant able to relink
Im Sorry Dave, I used this for PC, and just copied and pasted for mac..... not needed + '/' Many thanks
View ArticleRe: on idle script.
@David – maybe InDesign is *never* idle, if the preflight function is working constantly?Just a guess… Uwe
View ArticleRe: Help needed on listing out all tag names using XML Rules in...
Awesome. The .everyItem() was exactly what I needed. Thank you VERY much. Any recommendations on a better reference would be appreciated. I thoughtI poured through the extendscript reference, but...
View ArticleRe: Hyphenation Points
Ken, Have a look here: http://www.kahrel.plus.com/indesign/hyphenation.html Peter
View ArticleRe: Action Recorder for InDesign
Hi Kasyan, We've just released version 1.0.1 which fixes the initialization issues that were occuring on Microsoft Windows systems. You can download the latest version...
View ArticleRe: Replace fonts in InDesign CS6, js
Ok, this part is working now. Thank you! I need one more thing. I need to replace missing fonts with same style font. Thank you.Yulia
View ArticleHow to get a date on different pages?
Hey everyone, I am working on a daily planner for the office and have a script that automatically generates the dates but I don´t know how to get each of the dates on a different page. I'd really...
View ArticleRe: How to get a date on different pages?
Try this,app.activeDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;app.activeDocument.zeroPoint = [0,0];with(app.activeDocument.viewPreferences){...
View ArticleRe: How to get a date on different pages?
Thanks! Didnt think would have the answer this quickly!
View ArticleRe: Action Recorder for InDesign
Hi Pico, I downloaded and recorded a simple action, Created a TextFrame and wrote "Hello World\n\nI'm Action Recorder"When i played the recorded action, TextFrame was created and the text is written...
View ArticleRe: How to get a date on different pages?
Hi, Notice that there is a calendar ready to use, so your string builder could be simpler and more flexible: var mDoc = app.activeDocument, mGBounds = [0,0,50,150], mYear=2013, mMonth = 0,...
View Article