Q-Code User Manual
Ver. 7.0 2021/11/30
206
4.13.11 StopKR
The StopKR command is for stop the current keyboard recording immediately.
Note: NY4 / NY5 / NY5+ / NY6 / NY7 / NY9T do not support this command.
Ex.
TR1
:
KRecordS($Rec0)
TR2: StopKR
; Stop keyboard recording.
4.13.12 PlayK / PlayKS
Execute the playback of keyboard recording. After recording, user can play the recording through
PlayK.
The command formats are listed below.
PlayK(Label)
PlayKS(Label)
PlayK:
After the playback of keyboard ends, executing the next command.
PlayKS:
After the playback of keyboard starts, executing the next command immediately.
Label:
the recording section defined in
[Record]
Note: NY4 / NY5 / NY5+ / NY6 / NY7 / NY9T do not support this command.
Ex.
[Path]
TR1: EraseR($Rec0),KRecord($Rec0)
; After erasing Rec0, using KRecord to start
keyboard recording.
TR2: PlayK($Rec0)
; Use PlayK to play the keyboard recording.
4.13.13 WaitKN
If the playback of keyboard is playing, executing the next command when the playback ends. If there’s
no keyboard playback, executes the next command immediately.
Note:
1. NY4 / NY5 / NY5+ / NY6 / NY7 / NY9T do not support this command
2. PlayK=WaitKN
.
Ex.
[Path]
TR1: PlayK($Rec0)
TR2: PlayKS($Rec0), WaitKN
; Same executing result with TR1.