I've resorted to using SendKeys for the time being to create a PDF from my workbook using Acrobat (so the file has bookmarks). I've mapped out the key sequence:
Sub exportPDF()
Workbooks(ActiveWorkbook.Name).Activate
SendKeys "%y2", True
SendKeys "c", True
SendKeys "w", True
Application.Wait...