Problems registering, no confirmation email - see http://wiki.scribus.net/canvas/Forums_Registration
grouped_items = scribus.getGroupItems( item_name, type=4 )
scribus.unGroupObjects( item_name )
for gi in grouped_items:
if gi[1] == 4:
try:
para_style = scribus.getParagraphStyle( gi[0] )
except scribus.NoValidObjectError:
print( f"Object not found: '{gi[0]}'" )
continue
if para_style != diary_style:
process_text_frame(gi[0])
... etc
grouped_items = scribus.getGroupItems( 'group name', type=4 )
for gi in grouped_items:
if gi[1] == 4:
try:
para_style = scribus.getParagraphStyle( gi[0] )
except scribus.NoValidObjectError:
print( f"Object not found: '{gi[0]}'" )
continue
print( f"Item '{gi[0]}' in group; style '{para_style}'" )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.