Tengo varios cientos de documentos de MS Word que contienen una sola tabla en cada uno. Necesito copiar la tabla, pegarla en Vista previa y guardarla como jpeg. Puedo hacer que Word encuentre la tabla, pero no puedo hacer que funcione el comando "copiar objeto ...". ¡Sugerencias bienvenidas!
tell application "Microsoft Word"
activate
tell document 1
count (tables)
-- set firstTable to item 1 of tables - this does not work. Why?
set table_list to tables
set firstTable to item 1 of table_list
tell firstTable
allow page breaks
-- allow page breaks (false) -- syntax error, () not allowed. Why?
set allow page breaks to false -- This does not work either.
allow page breaks
end tell
select firstTable -- this works! Now what?
copy object firstTable --error -1708; doesnt understand "copy object"
end tell
end tell