source: contrib/Dms/op/convert_pp.js @ 3526

Revision 3526, 353 bytes checked in by afernandes, 13 years ago (diff)

Ticket #1416 - Disponibilizado modulos Timesheet e DMS para a comunidade.

  • Property svn:executable set to *
  • Property svn:mime-type set to text/plain
Line 
1//var logFile = fs.CreateTextFile("convertlog.txt", true);
2
3var source = WScript.Arguments(0);
4var target = WScript.Arguments(1);
5
6var PPApp;
7PPApp = new ActiveXObject("Powerpoint.Application");
8var Newdoc;
9PPApp.Visible = true;
10Newdoc = PPApp.Presentations.Open(source);
11Newdoc.SaveAs(target, 12);      // ppSaveAsHTML = 12
12PPApp.Quit();
13
14//logFile.Close();
Note: See TracBrowser for help on using the repository browser.