documentation index ◦ reference manual ◦ function index
Function: | Text | (text, slow=False, slow_done=None, slow_speed=None, slow_start=0, slow_abortable=False, pause=None, tokenized=False, style='default', **properties): |
A displayable that can format and display text on the screen.
text - The text that will be displayed on the screen.
slow - If True, the text will be typed at the screen at a rate determined by the slow_cps property, if set, or the "Text Speed" preference. If None (the default), then it will be typed at a speed determined by the slow_cps property. If False, then it will appear instantly.
style - A style that will be applied to the text.
properties - Additional properties that are applied to the text.
pause - If not None, then we display up to the pauseth pause (0-numbered.)
slow_done - A callback that occurs when slow text is done.
slow_speed - The speed of slow text. If none, it's taken from the preferences.
slow_offset - The offset into the text to start the slow text.
slow_abortable - If True, clicking aborts the slow text.
tokenized - True if the text is already tokenized.
TODO