Problems registering, no confirmation email - see http://wiki.scribus.net/canvas/Forums_Registration
# encoding: utf-8
#
# (c) MIT your name
#
# Boilerplate for Scribus scripts
#
# For details see the README file.
try:
import scribus
except ImportError as ex:
print('This script must be run from inside Scribus')
raise ex
def main():
# Replace the following line by your code
pass
if __name__ == "__main__":
main()
Quote from: forest_bear59 on January 08, 2023, 05:21:59 PMIn the meantime I have programmed the desired solution.
It works like intended. I have added the functionality to start calendar creation at any desired month (f.ex. to make a calendar starting Juli 2023 until June 2024). Still there are some restrictions (only DIN A3 landscape orientation and no good input routine) so some work still has to be done.
If someone is interested I'll post my solution here when it's 'presentable'.
Stephan