Anonymous
My feedback
-
3 votes
An error occurred while saving the comment -
1 vote
Anonymous shared this idea ·
-
715 votesIn Backlog · 138 comments · Adobe InDesign: Feature Requests » Tables · Flag idea as inappropriate… · Admin →
Anonymous supported this idea ·
-
35 votes
Anonymous supported this idea ·
-
188 votes
Dear All,
This feature is now available in latest InDesign CC version. Please upgrade to the latest release.
Thanks
Abhinav AgarwalAnonymous supported this idea ·
I have a script that sets a row height to 0 but cannot do the same with a column.
Uwe, how is that accomplished with a script.
Row height 0 script attached
main();
function main() {
// Main function goes here
var myRow = getRow();
myRow.autoGrow = false;
myRow.height = 0;
return (0);
}
function getRow() {
if (app.selection.length > 0) {
var mySelection = app.selection[0];
if (mySelection.parent.constructor.name == 'Cell') {
return mySelection.parent.parentRow;
} else if (mySelection.constructor.name == 'Cell') {
return mySelection.parentRow;
}
}
alert ('Cursor not in a table\ror illegal selection.');
exit();
}