Re: Reset findTextPreferences.appliedParagraphStyle?
@[Ariel] – thank you for pointing this out. Of course using app.saveFindChangeQuery() is the answer for one part of your problems. The other one about using the app.findTextPreferences (or anything...
View ArticleRe: JS ScriptUI CS4: How to create an indeterminate progress bar?
Hello,I dont know if this issue is solved yet..... but,I created a script that does batch processing (to many files)I wanted exactly what was asked for here - a progress bar that shows the progress of...
View ArticleRe: Delete character in file names
Hi, Thanks for your support, and sorry for the confusion, i made. Actually, my request is.. I have lot of files inside a folder, which has the file names aseg....
View ArticleHow to add progress bar?
Hi All, I need a help on adding progress bar to my script. Here is my script. var mydoc = app.activeDocument;mydoc.zeroPoint = [0,0];var win = new Window("dialog", undefined, [0,0,465,72], );var...
View ArticleRe: JS ScriptUI CS4: How to create an indeterminate progress bar?
@Davey – thank you for sharing this. The problem was pending. At least for me ;-) Now, I tested with a slightly altered version of the code from Vamitul (answer #23 here) – not exporting all InDesign...
View ArticleRe: Delete character in file names
hi Unique, var myfilePath=File("E:\\Work\\rename\\");var myFileName = myfilePath.getFiles("*.*");for(var i=0; i<myFileName.length; i++){ myNEWName = (myFileName[i].name.replace...
View ArticleRe: How to add progress bar?
@Learner – see e.g. this other thread that popped up today again (answer #23 by Vamitul PLUS answer #28 by Davey): Jim BirkenseerJS ScriptUI CS4: How to create an indeterminate progress bar?...
View ArticleRe: How to add progress bar?
And do some reading at: Peter KahrelScriptUI for dummies http://www.kahrel.plus.com/indesign/scriptui.html The latest version of the PDF about it is 2.2… Uwe
View ArticleRun jsx as exe without dialog boxes
Hi All, #target "indesign-7.0"alert("testing"); I am using this code to execute the javascript in InDesign CS5. If I double click this javascript file it actually executes and giving alert message, but...
View ArticleRe: Run jsx as exe without dialog boxes
Put the script in a folder called "Adobe Scripts" in your documents folder and run it from there. Ariel
View ArticleRe: Delete character in file names
Hi Mi_D, Thanks for your support. The above script works, only if the file has the same format. like below. XX_5182179_ETERNITY_25TH_MB_AB_XYX_abc.ttjs The rest of the file name remain unchanged....
View ArticleRe: Resources for new programmer.
All official scripting support is located at http://www.adobe.com/products/indesign/indepth.displayTab2.html#Script ingresources -- in particular, the Introduction To and Scripting Tutorials are...
View ArticleRe: Run jsx as exe without dialog boxes
Thanks Ariel,It works fine as my request. Thank you once again.Mahesh
View ArticleRe: Resources for new programmer.
.. of additional interest: My own Intro To article on indesignSecrets: http://indesignsecrets.com/javascript-for-the-absolute-beginner.php -- this introduces the ID DOM to JS writers; Marc Autret's...
View ArticleRe: Delete character in file names
Also, im trying to find and replace like this, but this works only if the contents are in indesign. myS = Folder("/Users/wleastudio/Desktop/For Chennai/").getFiles("*"); //remove links from Desktopfor...
View ArticleRe: Delete character in file names
try this var myfilePath=File("E:\\rename\\");var myFileName = myfilePath.getFiles("*.*");for(var i=0; i<myFileName.length; i++){ myNEWName = (myFileName[i].name.replace...
View ArticleRe: Delete character in file names
@Unique – so we do not work on InDesign files, but on files ending with .ttjs, right? Are these .ttjs files related to the TouchThing game engine? I ask just out of curiosity… Ok. In your question...
View ArticleRemove unused styles at the book level.
We have hundreds of legacy ID documents that have been created over the last 15 years, and the styles are messy and confusing. We need to change the syle names and update the styles. Doing this for...
View ArticleRe: How to break link to cell/table style in a selection
For cell Selection is work (but can't keep the style setting after break the link), but I also want to break the table style, but error For both Break link to cell/table style, I want to keep the style...
View Article