Problems registering, no confirmation email - see http://wiki.scribus.net/canvas/Forums_Registration
QuoteI do agree it would be great to have easy access to multiple profiles in the pdf export window.Yea, it would be a standout feature for Scribus. So useful.
Quote from: Lynn on March 07, 2026, 01:52:05 AMOh that is weird. I tested it on my computer in 1.7.2 and while my custom color selection persists when there isn't a file open even if I relaunch Scribus, when a new file is made it doesn't inherit my custom color scheme.
When I did the exact same thing in 1.6.4 (set a color scheme with no file open, then made a new document) the new file automatically was given that default color scheme. It feels like this is a file creation bug.
import os.path
import string
try:
import scribus
except ImportError:
pass
def main():
try:
scribus # pylint: disable=pointless-statement
except NameError:
return
#get base filename and subdirectory so we save to the right folder
fileName = scribus.getDocName()
entry = fileName.rsplit('.sla', 1)[0]
#make pdf file object, set any PDF export settings here
pdf = scribus.PDFfile()
pdf.info = "Invitation"
pdf.version = 14
#example exporting three times with different page ranges
pdf.pages = [1,4]
pdf.file = entry+'Attendees.pdf'
pdf.save()
pdf.pages = [2,4]
pdf.file = entry+'Virtual.pdf'
pdf.save()
pdf.pages = [3,4]
pdf.file = entry+'VIP.pdf'
pdf.save()
return
if __name__ == '__main__':
main()Quote from: a.l.e on March 05, 2026, 08:47:51 AMI gave it a try:Yep, that's exactly the one. I can import colors as many times as I want, and they just won't stay. They'll be there in that moment, when I try to access them in a document, or when I open the program again, they're gone.
- I've created a Scribus document.
- In "Edit > Colors and Fills", I've removed the unused colors.
- I've created a couple of colors.
- Saved the .sla document as "colors.sla" and closed it.
- I've created another new document
- In "Edit > Colors and Fills", I've removed the unused colors, then used the "Import" button to select the "colors.sla" file I've previously saved and imported the colors.
- Now I have the colors I've defined in the first few steps in the second document.
On the other hand, I could not get the "Colors Sets" feature in the "Colors and Fills" dialog to work.
Are you using this one?