javascript - get and set an text element in a table with a script in indesign -


i looking indesign scripts , have not found topic, think important. here question: - how modify text frame in table in indesign cs6 javascript ?

i have try instruction :

app.activewindow.activepage.textframes[0]; 

but doesn't work.

thanks in advance!

pages have text frame, contains table. tables must anchored within text frame far know. if there text frame within table, need access it:

var doc = app.activedocument;  doc.pages[0].textframes[0].tables[0].textframes[0]; 

in other words, need reference text frame twice. 1 text frame contains table , text frame within table.


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -