How to remove table border
Dear kings,
I was try to remove border from tables (my coding below).
This coding not working "Result: undefined"? how to remove all table borders. please suggest friends.
var mTables = app.activeDocument.stories.everyItem().tables.everyItem();
with (mTables) {
topBorderStrokeWeight = 0;
bottomBorderStrokeWeight = 0;
leftBorderStrokeWeight = 0;
rightBorderStrokeWeight = 0;
}
alert("Done")
Advance thanks all