How to (programmatically) change slides in the current Keynote presentation?

I am working on a Cocoa application that I would like to use remotely (on the same computer, from a different process), which slide is displayed in the current Apple iWork '09 Keynote presentation.

How do I approach this?

+3
source share
1 answer

The Keynote Applescript dictionary has a preliminary command. Using:

Tell application "Keynote" 
advance 
end tell

seems to do what you need. You can use a script bridge or NSApplescript to run this script from a Cocoa application.

+4
source

Source: https://habr.com/ru/post/1713532/


All Articles