How to access Powerpoint object events (Mac version) using Apple script?

I want to add a callback function to identify the Save action in Powerpoint. Using VBA, we can execute this script using the Application.PresentationSave Event ( https://msdn.microsoft.com/en-us/library/office/ff744230.aspx?f=255&MSPPError=-2147217396 ).

In the course of my research, I found that Application Object events are not enabled or not supported in the Powerpoint mac version. ( http://youpresent.co.uk/powerpoint-application-events-in-vba/ )

Is there any way to achieve this script using apple script.

Scenario: I want to check which slides are changed when the user clicks the save button in powerpoint. Therefore, if I can use the ApplicationSave event, I will compare the modified slide with the main slide when the user clicks the save button.

+4
source share
1 answer

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


All Articles