I have the following code snippet which simply opens a Powerpoint presentation and calls a VBA macro.
function CallVBA()
{
var App;
App = new ActiveXObject("PowerPoint.Application");
App.Visible = true;
App.Presentations.Open("D:\\Jonathan\\PPtHymns\\b.pptm");
App.Run("Doit");
}
While this works fine on Windows, it does not work on a Mac because of using ActiveX objects.
Is there another way of opening a Powerpoint presentation within a html page?
This may appear to be trivial, but I wish use code to add several new slides and text into the presentation and then run the presentation manually when done.