Applescript Keynote Selection Range
This script fails with "Can’t make \"A5:D5\" into type range."
activate application "Keynote"
tell application "Keynote"
tell the front document
tell the current slide
set auction to make new table
tell auction
set selection range to "A5:D5"
tell application "System Events"
tell application process "Keynote"
click menu item "Merge Cells" of menu "Table" of menu item "Table" of menu "Format" of menu bar item "Format" of menu bar 1
end tell
end tell
end tell
end tell
end tell
end tell
A command to merge a range of cells directly without UI scripting fails, so I tried this.