hi, I need some help figuring out how to write a simple script that will save a cover as a PDF *with all the correct settings* for my environment. the point is to automate Export > Save As PDF ... so that I always have the correct settings selected, rather than having to remember to make sure I have everything set correctly in the dialog boxes.
Can anyone help me figure out the missing bits here? Fred #!/usr/bin/env python ''' A script to export covers in a non-compressed, CMYK, 300 dpi PDF. ''' from scribus import * if haveDoc(): savePDF # how do I ask for filename # how do I add these parameters compress=false outdst=printer quality=0 resolution=300 version=13 -- -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.scribus.info/pipermail/scribus/attachments/20090829/6568b2e8/attachment.htm>
