- Cocos Creator: 2.7.2
- Language: TypeScript
The dialog supports continuous entry, pasting, and continuous deletion of a six-digit verification code.

Place six visual boxes with Label children in the dialog and use one EditBox as the actual input. Clicking any visual box focuses the EditBox. Its change listener distributes characters across the Labels.
1 | this._view._EditBoxC_input.node.on('text-changed', this.input, this); |
This achieves the desired behavior, but does not allow editing one individual visual box directly.