Skip to main content

IsTypingActive

This function was added in DSL 1

Description

Returns if typing is currently active (see StartTyping).

function IsTypingActive() --[[ ... ]] end

Parameters

None.

Return Values

  • active: boolean - true if typing is active, false otherwise.

Example

if IsTypingActive() then
print('Typing is currently active.')
else
print('Typing is not active.')
end

See Also