How to search text in the table?
suppose, i've selected fragment in document, , need find , replace text in it. ok, untill select part of table text. has idea, how search through selected cells in table? or, how iterate them?
thanks!
here how interate through table cells in selected table:
var doc = app.activedoc; var tbl = doc.selectedtbl; var cell = tbl.firstrowintbl.firstcellinrow; while (cell.objectvalid() === 1) { // cell object here. cell = cell.nextcellintbl; }
- rick
More discussions in FrameMaker Scripting
adobe
Comments
Post a Comment