in reply to Re^2: Win32::OLE Powerpoint ExportAsFixedFormat syntax help
in thread Win32::OLE Powerpoint ExportAsFixedFormat syntax help

I solved using $Presentation->SaveAs("$outfile", 32);

it was tricky finding that 32 = pdf format and also $outfile needed foward slashes : / in path (with \ I got confusing errors).

Replies are listed 'Best First'.
Re^4: Win32::OLE Powerpoint ExportAsFixedFormat syntax help
by karl.pl (Initiate) on Jan 23, 2012 at 18:16 UTC
    Just to add my little contribution
    use Win32::OLE::Const 'Microsoft PowerPoint'; $Presentation->SaveAs("$outfile", ppSaveAsPDF, 1);
    HIH