Hi
I am creating a pdf by just printing on Acrobat Distiller. This is
fine.
I need to create a pdf which has a given prespecified name and I do not
wish that
Distiller prompts me for a name.
Does anyone know how to pass the output file name (thus avoiding that
Distiller open the open file dialog) ?
-tom
You may not want to dig this deep for this project but here is what I
did (I was too cheap to buy adobe)........
I had this same problem when I was trying to automate pdf creation. I
used GhostScript and Redmon. I created a custom vb application that
reads a text file for the file name and path and then creates a PDF
with that path and name. Pretty much you set up a postscript printer,
with a redirected port, you then set up the port to be redirected to
Redmon, from there you use a custom app that accepts a single command
line argument (you put the path to this custom app in the arugment
section for Redmon followed by a %1). This custom app will get the
path to the postscript document(in the windows temp folder) via the
argument passed from redmon, so then your custom app would call
Ghostscript to convert the postscript file to PDF to whatever name you
wanted. It sounds complicated but if you read the website and wrap
your head around actually what to do and what its doing it is pretty
simple. I have some instructions written up that I need to post on my
site sometime. This is really not as complicated as I made it sound.
http://www.cs.wisc.edu/~ghost/redmon/
http://www.cs.wisc.edu/~ghost/
http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm
If you want more detailed instructions repost or email me and Ill give
them to you.....
(e-mail address removed)