cue.type

cue.typeNode

Lines typed in character by character on the timeline — the code environment’s own verb. It wraps lines chunks: in: says when the typing starts, speed: is characters per second (the window’s length is the text’s length over the speed), and out: runs the same clock backwards, deleting from the end like a backspace. A caret mark rides the line being typed, and that line carries a wash while the window is open.

#Attributes

When the typing starts: a step index (1), a time (1.5s), or a step with an offset (1 + 500ms).Can be written as shorthand: cue.type:value
Defaultnone
When the deleting starts, in the same form.
Defaultnone
speed
Also written: cpsCharacters per second.
Default20

#Allowed content

Body { }

#Allowed in

#Examples

cue.type{
    lines{
return message
    }(
        indent: 1
    )
}(
    in: 1
    speed: 30
)
cue.type{
    lines{
print("draft")
    }
}(
    in: 1
    out: 2
)