Macro for Publish to Pdf?

Hi,

Does anyone know of a Macro available that you can set some standard settings once for your PDF output and then activate the macro and it will publish a PDF with those settings automatically in a specified folder without any further input from the user?

Sort of a set it and forget it one button push publish to pdf macro?

Parents
No Data
Reply
  • You can try following

     

    On publish PDF define your PDF settings (in sample defined “PDF/X-1a AA6 curves”) and save them and then you can use following macro

     

    Sub Test()

    ActiveDocument.PDFSettings.Load "PDF/X-1a AA6 curves"

    ActiveDocument.PublishToPDF "C:\MyDocument.pdf" 'path&name where pdf is saved

    End Sub

     

     

Children