It's possible to add macros from a macro-enabled PowerPoint (pptm) presentation from the ribbon by right clicking in the ribbon and selecting Choose commands from: Macros.
I want this to be available at any time, so I've saved the pptm file as an add-in (ppam) and loaded the add-in.
However, I find that it is not possible to add the macro from the add-in in the ribbon. How can this be done? Do I somehow need to register all available Subs from Auto_Open or similar with something like:
Sub MyCommand()
MsgBox "This worked"
End Sub
Sub Auto_Open()
' Magic code allowing me to add the above to the ribbon
End Sub
Thanks! Troels