Creating bookmarks via printing

2006-08-23 17:45:57 by shawnmatlock

I started with Acrobat 7 with MS Word 2003. I have a macro that collects and processes data from the user (it generates the directory and file names) then prints to PDFDistiller. But it does not create bookmarks.

I was told (on another board) that bookmarks do not show up when printing to Distiller. I should try another PDF writer.

I tried PDFCreator and got the same results.

Can PDFCreator make bookmarks when printing to it from a macro?

My code is below:

'***** PDFCreator support *****
Application.ActivePrinter = "PDFCreator"
If Err.Number <> 0 Then
MsgBox "Error setting printer to PDFCreator"
End If

Set objPDFCreator = CreateObject("PDFCreator.clsPDFCreator")

On Error GoTo ErrorTrap

With objPDFCreator
.cClearCache
DoEvents
ActiveDocument.PrintOut Background:=False
DoEvents
.cPrinterStop = False
End With

DoEvents


2006-08-23 18:15:44 by thesmilyface

Yes, in conjunction with pdf-t-maker.

http://www.transcom.de/transcom/en/2004_pdf-t-maker.htm


2006-08-24 16:34:26 by anonymous

Where can I find API information for PDF-T-Maker?


2006-08-25 17:29:42 by thesmilyface

PDF-T-Maker is a ms office macro.


2006-08-25 22:38:16 by shawnmatlock

Other than installation of PDF-T-Maker, the only documentation I can find is not in English.

Further suggestions?

Thank you,
Shawn


2006-08-26 08:28:20 by thesmilyface

Of course it is in english!
Download it from here:
http://www.transcom.de/transcom/downloads/PDF-T-Maker.zip

Unzip it and read the file "PDF-T-Maker_M_English.pdf".

Frank