Re: Script to activate the Color Separations Panel?
Womp womp womp (sad trombone). That's unfortunate. Thank you for your help.
View ArticleAnchored items size with javascript
Hi all, I try to get the size of an item in my InDesign page, with the function geometricBounds.It causes a problem when my item is anchored to another one : I only get the bounds of the main item and...
View ArticleRe: Anchored items size with javascript
KENOBEE wrote: ...I can't detect the second item with script, because it isn't a real item... Can you select the second item in InDesign? Can you see an anchor point for this object anywhere in...
View ArticleRe: Anchored items size with javascript
That seems to work. Ok so I must check on each items of my group if there is a spline item. Then I have to get all geometrics bounds to get the size of the full group. After that, I could get the real...
View ArticleRe: Anchored items size with javascript
Sigh. The case is much more complicated.Consider drop shadows, tables that exceed the bounds of text frames, etc.etc. But you could export the whole group as image, place that same image at 100% scale...
View ArticleRe: find rectangle fillcolor below 100
I have been playing with your script problem while testing InDesign CC. I have found a small problem with this version; haven't tested in other versions yet. Anyway, notice in the code below that I am...
View ArticleRe: not able to merge table cells
hello dev, i have 6 rows and 4 columns no footer no header, and i did merge 1st mergecell:- from row1 column1 to row6 column1here is the syntax:- var t = table.rows.length;var f = table.rows.length...
View ArticleRe: not able to merge table cells
dear dev i have upload three images of tables 1- main_tab means what is my actual table2- want_tab- which i need to convert my table3-after_script_tab- this is the converted table after using my...
View ArticleSearch cross reference marker
Hi. Can someone tell me how to search cross reference markers in a InDesign document? Miya
View ArticleRe: not able to merge table cells
Hi, Notice before merge 4 that your table.columns[3].rows.length IS NOT EQUAL to table.columns[3].cells.length;(6 != 5) I suggest to set your merge horizontally (i.e using: table.rows[f].cells[1]...
View ArticleWould like to create a script for list all elements and structure of an...
Hello everybody, I'm a very beginner in indesign scripting. I would like to create a script in order to list all elements and the inner structure of a n indesign document. The aim for me is to...
View ArticleRe: not able to merge table cells
hello jarek,, you are right for my perticular case but my script comes out from code sequentially merge1 to merge 4 how could i apply 1st merge in end i am talking about various tables and their...
View ArticleNeed GREP Help
Hi ALL, I hope simple request for you... I want to find the word start with http:// or www.(find all url words start with http://or www.) How can we catch using in GREP or TEXT. one more question: In...
View ArticleRe: Need GREP Help
Hi, app.findGrepPreferences.findWhat = "http.+?(?=\\s)|www.+?(?=\\s)"; There is no wildcard's multiplier in "Text" tab. If you type "^?^?^?" ID will match exactly 3 "any character", no less, no more...
View ArticleRe: Batch export grouped items as jpeg?
Does this process work with nested groups (groups that contain other groups)? How do you locate the outermost group?
View ArticleApply Object Style for Anchor
Hi All, Could anyone please give solution for my request. 1. Find Anchor marker2. Apply object style for that selecting parent Graphics frame. var myDoc = app.activeDocument; app.findGrepPreferences =...
View ArticleHow to process nested groups
Hi, I'd like to write a script that will process all groups within a document, but it must support nested groups (groups that contain other groups). I only want to process the outermost, encompassing...
View ArticleRe: Search cross reference marker
You can't look for them using findGrep() or findText(). Cross-references are instances of hex value 0018, but that's used for other things too soo it's not safe to look for 0018. What you can do is...
View ArticleRe: How to process nested groups
Yes, that is as expected. allPageItems returns an array of every single pageItem, no matter how deeply embedded it is. myDoc.pageItems returns only top-level pageItems, i.e. not pageItems within...
View ArticleRe: Script to activate the Color Separations Panel?
Hi Vamitul and Jareck Can you please check that app.panels.itemByName("$ID/Separations Preview").visible =1works on non English inDesign versions as I want to use it for a script.I cant see why it...
View Article