Re: Remove All InDex Markers in empty cells
Perfect, then you can mark your issue as solved. (and only for info: you don't need the line#2 in the script snippet - I have overlooked this before)
View ArticleRe: Move objects to new page and rotate
Hi Thanks for your response. Yeah I understand that I can't expect others on the forum to do all the work, and really do appreciate all help I get. I'm fairly new to scripting, and i'm finding it...
View ArticleScript Label insert into FileName
Any help would be greatly appreciated! This is a portion of "PageExporterUtility5.0.js" that I'm tailoring to use at our workplace. Finding a simple description of how to use the "Script Label" is...
View ArticleGetting only the selected tabs
I have the chore of adusting thousands of tab stops in hundreds of paragraph styles, and have stolen some very handy scripts for resetting tab stops. My thanks to anyone who's ever posted such a...
View ArticleRe: Script Label insert into FileName
If the problem is getting the text contents of your labeled box, try something like this: var docsizeBoxes = new Array;for (var i = 0; i < app.activeWindow.activePage.textFrames.length; i++) {...
View ArticleRe: Remove All InDex Markers in empty cells
Done! Strange that using the unicode "<FEFF>" will work in a text search in a script, but will not work using InDesign GREP search with \x{FEFF}.
View ArticleRe: tableStyles alternating pattern
Simply I need to read the attribute alternating rows or alternating columns of tableStyle if exists.... But i don't found the attribute... it don't exists?
View ArticlePlease provide the Story Splitter script by Adi Ravid?
Hi, I'm working on a complex book and need to split threaded stories at lots of places. I know I can do it manually through the Story Editor but have really set my eyes on the Story Splitter script...
View ArticleCut and Move files
Hi All, My request is cut files from the source folder and move into Destination folder. Using forum I got the below coding, it should copy from the source folder and paste into Destination Folder....
View ArticleRe: Getting only the selected tabs
Hi, As you noticed, each insertionPoint, word, line, text has the same tabStops set as parent paragraph.So succesful edit of tabStops related to current selection needs to discover:how many tabs...
View ArticleRe: Remove graphicLines
Hi Jarek & Green4ever, So for the confunsion I have made. Actually the above scirpt remove all the magenta graphic Lines,"Yes"... JAREK, happy to have a correction on the script. to remove the...
View ArticleRe: Cut and Move files
Once you copied the folder to the destination folder, use remove function for deleting the source folder. sourceFolder.remove(); Vandy
View ArticleRe: tableStyles alternating pattern
Hi,Which property are you interested in? table.startColumnFillCount ==> which columns are takentable.startRowFillColor ==> which swatch is applied to chosen rows... Jarek
View ArticleRe: tableStyles alternating pattern
no....In the interface of ID I can define in the tableStyle the alternating rows attributes.But I can't read this attributes in the object tableStyle whit JS
View ArticleRe: Cut and Move files
Hi Vandy, Thanks for you response... Still it is not working. Thanks in advanceBeginner_X
View ArticleRe: Remove graphicLines
Hi, so use this: var myDoc = app.activeDocument, mLines = myDoc.graphicLines, len = mLines.length currOrigin = myDoc.viewPreferences.rulerOrigin, currZero = myDoc.zeroPoint;...
View ArticleRe: Cut and Move files
You have to place the remove function at the end of the script. can you please tell me what is the error it shows. Vandy
View ArticleRe: tableStyles alternating pattern
yes...You can read tableStyle.startRowFillColor with JS
View ArticleRe: Cut and Move files
Vandy's solution will work only when Source folder is empty."Folder.remove()" can only delete folder when the folder is empty. In your case , i guess your source folder is not empty. Hence , complete...
View Article