I am writing a small Applescript that adds a text frame with some content to an InDesign doc. I am trying to specify the properties of the content in the text box but none of the specs are being applied and I am getting the default. The events are not throwing any errors so I am a bit lost.
Any help would be appreciated.
This is what I have:
tell application "Adobe InDesign CC 2014"
activate
tell active document
set xFrame1 to make text frame with properties {justification:center align, point size:5, font:"Arial", geometric bounds:{50, 100, 300, 400}}
set contents of xFrame1 to "Please work"
end tell
end tell