Hi Every one,
I am currently working for automation in word through AppleScript.
I have the script the to find the tables in word document, find below;
tell application “Microsoft Word”
set y to activate document
set cnt_Table to count of table of the active document
set mic to select table 1 of the active document
end tell
I want to find each and every table in the word document and i have to insert call outs before and after the tables. Like [Start Table 1-1] & [End Table 1-1].
If it is Table 2 means i have place the call out before as [Start Table 1-2] & After [End Table 1-2].
Thanks in Advance
Thiyagu