0
is there a table style I can create where all columns and rows are the same size in a file
Explorer
,
/t5/indesign-discussions/is-there-a-table-style-i-can-create-where-all-columns-and-rows-are-the-same-size-in-a-file/td-p/14992205
Nov 20, 2024
Nov 20, 2024
Copy link to clipboard
Copied
is there a table style I can create where all columns and rows are the same size in a file
TOPICS
Experiment
,
How to
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/indesign-discussions/is-there-a-table-style-i-can-create-where-all-columns-and-rows-are-the-same-size-in-a-file/m-p/14992268#M598340
Nov 20, 2024
Nov 20, 2024
Copy link to clipboard
Copied
Table menu > Distribute Rows Evenly and/or Distribute Columns Evenly
TableStyles and CellStyles do not have the ability to control absolute physical size.
Mike Witherell
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Guide
,
/t5/indesign-discussions/is-there-a-table-style-i-can-create-where-all-columns-and-rows-are-the-same-size-in-a-file/m-p/14992626#M598376
Nov 20, 2024
Nov 20, 2024
Copy link to clipboard
Copied
But Javascript can simplistically imagine a gateway! … So 1 click! 😉
/*
_FRIdNGE-0769_Width-HeightThroughTableStyle.jsx
Script written by FRIdNGE, Michel Allio [20/11/24]
*/
var myDoc = app.activeDocument;
var myTables = myDoc.stories.everyItem().tables.everyItem().getElements();
var T = myTables.length, t;
for ( t = 0; t < T; t++ ) {
// "TableStyle_1" and "TableStyle_2" are Table Style Names:
if ( myTables[t].appliedTableStyle.name === "TableStyle_1" ) {
myTables[t].cells.everyItem().width = 8;
myTables[t].cells.everyItem().height = 22;
} else if ( myTables[t].appliedTableStyle.name === "TableStyle_2" ) {
myTables[t].cells.everyItem().width = 16;
myTables[t].cells.everyItem().height = 9;
}
// and so on! ...
}
alert( "Done! ...")
(^/) The Jedi
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
James3669094303ct
AUTHOR
Explorer
,
/t5/indesign-discussions/is-there-a-table-style-i-can-create-where-all-columns-and-rows-are-the-same-size-in-a-file/m-p/14992639#M598378
Nov 20, 2024
Nov 20, 2024
Copy link to clipboard
Copied
I'm not sure how to install javascript into indesign
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/indesign-discussions/is-there-a-table-style-i-can-create-where-all-columns-and-rows-are-the-same-size-in-a-file/m-p/14993919#M598486
Nov 20, 2024
Nov 20, 2024
Copy link to clipboard
Copied
I'm not sure how to install javascript into indesign
By James3669094303ct
https://creativepro.com/how-to-install-a-script-in-indesign-that-you-found-in-a-forum-or-blog-post/
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

