Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JAE on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Ghostscript for converting .plt

  • Thread starter Thread starter C.Andersson
  • Start date Start date
C

C.Andersson

Guest
Hello everyone. One of these classic problems.


I use the regular "printthe active object"-button in WF3 and then select my own .pcf-file to make a .plt-file that will convert to .pdf through a .bat-file that startsGhostscript 8.6.


But Ghostscript doesn
 
You are deleting %outname% with the last line of your batch file.


Try move %outname% C:\"your_pdf_folder"
 
doronron1 said:
You are deleting %outname% with the last line of your batch file.


Try move %outname% C:\"your_pdf_folder"


How do u mean? Just edit my .bat-file please :)
 
Edit your batch file.


Change line:


del %OUTNAME%


To:


move %OUTNAME% C:\"your_pdf_folder"


Where "your_pdf_folder" is the location path for your pdf files


e.g.


c:\proe\pdffiles
 
doronron1 said:
Edit your batch file.


Change line:


del %OUTNAME%


To:


move %OUTNAME% C:\"your_pdf_folder"


Where "your_pdf_folder" is the location path for your pdf files


e.g.


c:\proe\pdffiles


The .pdf is coming, but now i would like it to get sent to a printer. Anyone know how to do that?
 
Try to copy to your printer network nameinstead of ip.


I just tried my installation and replaced the printername with ip and then it didnt work anymore....
 

Part and Inventory Search

Sponsor

Back
Top