I'm trying to write a macro which gets automatically executed when I open my PowerPoint presentation in PowerPoint 2013. According to this article, and this StackOverflow answer this can be done with writing a VBA subroutine with the name "Auto_Open":
Sub Auto_Open()
MsgBox ("Hello World!")
End Sub
I guess, this is a very basic stuff, but still this doesn't work for me. In the Trust center, I enabled all macros, and the "Trust access..." is also checked in.
I'm using PowerPoint 2013. Is it possible that Microsoft doesn't support auto macros in PowerPoint 2013? I haven't found any info about this on the internet, only for Word 2013.