Quartet game generator | made with ZIM

A printable quartet game generator creates custom sets of Quartet cards for various topics. Input categories, attributes, and information to create a printable document for a fun, interactive game.

1 Like

Very nice!

1 Like

waauw cool
but for the color alpha not in correct position
image

Probably a STYLE left on... do STYLE = {} or Style.clear() before making the ColorPicker. If the styles need to be remembered then the Style.remember() and Style.recall() can be used.

1 Like

I like the export to pdf with many cards, how did you do that @amihanya ?

1 Like

like that:
Style.remember();
Style.clear()
this.colorPicker = new ColorPicker().addTo(S);
Style.recall();

?

1 Like

For the pdf i use pdfjs, in the ZIM i build a bitmap and send it to the page in pdfjs.

thanks for the tip