Estoy insertando una nueva imagen en un documento existente de Keynote. Cuando la imagen se inserta, está en la capa frontal cubriendo algunos otros objetos. Me gustaría enviarla a la capa posterior. ¿Existe algún comando de Applescript para hacerlo?
tell application "Keynote"
activate
tell (open result_keynote)
tell third slide
tell (make new image with properties {file:screenshot_file})
set height to screenshot_height
set width to screenshot_width
set position to screenshot_position
-- set layer position here
end tell
end tell
end tell
end tell