I want to import all pages of a PDF in Corel Draw 9
They should not be "interpreted" but only be "placed".
So I wrote this simple script:
WITHOBJECT "CorelDraw.Automation.9"
.FileNew
.FileImport "C:\TEST.pdf", 1314, true
END WITHOBJECT
My problem is, that only the first page will be "placed".
If I choose
.FileImport "C:\TEST.pdf", 1333, true (Interpretation of the PDF-File)
all pages will be imported.
What can I do to "place" all of the pages in the PDF?
Thanks
Achim