Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

is there a table style I can create where all columns and rows are the same size in a file

Explorer ,
Nov 20, 2024 Nov 20, 2024

is there a table style I can create where all columns and rows are the same size in a file

TOPICS
Experiment , How to
152
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 20, 2024 Nov 20, 2024

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
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Nov 20, 2024 Nov 20, 2024

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! ...")

 

Capture d’écran 2024-11-20 à 17.03.26.pngexpand image

 

 

 

Capture d’écran 2024-11-20 à 17.07.03.pngexpand image

 

(^/)  The Jedi

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 20, 2024 Nov 20, 2024

I'm not sure how to install javascript into indesign

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 20, 2024 Nov 20, 2024
LATEST
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines