Voglio selezionare solo gli elementi di testo in una diapositiva usando lo script Apple.
tell application "Keynote"
    activate
    tell front document     
        tell slide 1
            select (every text item)
        end tell
        -- save
    end tell
end tell
Continuo a ricevere il seguente errore:
error "Keynote got an error: every text item of slide 1 of document 1 doesn’t understand the “select” message." number -1708 from every text item of slide 1 of document 1
Qualsiasi aiuto sarebbe molto apprezzato!