Script for Indesign CS6 - Export Document to preset PDF
Does anyone know how to do this please?
View ArticleRe: Can Dialogs remember last used settings?
Thanks Ariel. I was not aware of the insertLabel method. I will inverstigate more. Thanks for the tip. Appreciate it.
View ArticleRe: Open With
A good evening / morning to you too. Thanks for that test very crucial feed back. The auto format is a nicety but can manage without it. I am confused about the file format in the 2011 reference it...
View ArticleRe: Search and Replace Character Styles
You should be able to just change CharacterStyle to ParagraphStyle. i.e, instead of app.activeDocument.characterStyles.item, it would be app.activeDocument.paragraphStyles.item, etc. It should be that...
View ArticlebeforeClose event runs twice - first time says its cancelable - second time not
so... I am writing a script in vbs that uses the beforeClose event and I have most of it working... however .. after some testing with the GetEventInfo.vbs script supplied in the scripting manual it...
View ArticleRe: beforeClose event runs twice - first time says its cancelable - second...
Ok .. So I've figured it out and you can definitely cancel the first beforeClose event code is :- main Sub Main() myIndesign.AddEventListener "beforeClose", getref("genPDFClose"), falseEnd Sub...
View ArticleRe: Open With
a, sorry I used format 'Excel7 file format' which seems to be common Script 3, German ***************************************Start Time: 1377149578529Local Time: Thu Aug 22 2013 07:32:58...
View ArticleRe: Can Dialogs remember last used settings?
here are two great articles from tomaxxi:http://indisnip.wordpress.com/2010/07/31/saving-script-data-within-doc ument/http://indisnip.wordpress.com/2010/12/31/saving-script-data-using-json -part-2/
View ArticleRe: Can Dialogs remember last used settings?
Hi, if working with a database and documents built dynamically a good old cfg-file may be the choice ...
View ArticleRe: [Req.] script for updating links in Indesign using spotlight
Hi, it's been built for lion, ID 5.5. Mdfind-command seems to be ok. perhaps it's a copy paste problem. try the link https://dl.dropboxusercontent.com/u/11350320/mdFind_Relink.scpt.zip
View ArticleRe: Open With
here's a sample of how to create an excel file using jsx/vbs // creates and runs a vbs file that creates an excel file// carlos canto// http://forums.adobe.com/message/5615242?tstart=0#5615242 var...
View ArticleRe: use bridgeTalk with onError event, exception handling
Hi all, I found this solution if it can be helpfull for someone.But I don't know if it is the better way. I'm not abable to run a new exception in the onResult function. function save_to_PSD(obj){...
View ArticleRe: Script to convert one style to another
I played around a bit more and got it worked out, mainly thanks to you.. i think it is all sorted now except i have one question i thought you might be able to help with ... How do i show the top level...
View ArticleRe: [Req.] script for updating links in Indesign using spotlight
Hi Hans, thanks for the quick reply. I'm still getting the same error. I am working on Mountain Lion (10.8.4), so maybe that's why I get the error? --edit It seems that I only get the error when I...
View ArticleHow to get fillColor for characterStyle
Hi I'm trying to get the filColor for each paragraphStyle and characterStyle in a document. The (abbreviated) code below works just fine for paragraph styles. for (mySCounter = 0; mySCounter...
View ArticleRe: Scripting Error
Ah, I finally see the cause of your confusion: All cross references are hyperlinks. But: all hyperlinks are not cross references. What you need to do is look at each hyperlink, determine if it is a...
View ArticleRe: Scripting Error
Dave, Great minds think alike. I finally realized that I was coming at this from the wrong angle. What I need to do is determine the number of hyperlinks in the document, and, as you said, examine each...
View ArticleRe: Scripting Error
Your words are good, your code doesn't come close to doing what your words say. What is your obsession with crossReferenceFormats[0]? A document has cross reference formats so you can use them to...
View ArticleRecognizing Tables as "Not Spaces"
I've written an Indesign script the goal of which is to clean up extraneous white space in text (multiple returns to single return removes leading white space, etc.). It is essentialy a series of GREP...
View ArticleRe: Scripting Error
Don't have obsession with formats[0]; just thought I'd do this using indexes. You way works, I'll just have to add some "else" coding to handle the various possibilities. I was just focusing on one to...
View Article