tell application "QLab" to tell front workspace
# choose the desired cues or single cue
set xx_xx to cues in (current cue list) whose q type is "memo" and broken is false
set selected to xx_xx
	#	copy selected(s)
tell application "System Events"
keystroke "c" using command down
end tell
	#	deselect it/them after copy
set selected to {}
	repeat xxx times
# paste copied cues or a single cue
activate
tell application "System Events"
keystroke "v" using command down
end tell
#
make type "group"
set theInnerGroup to last item of (selected as list)
# at this point the group INCLUDES the pasted cue(s)
# OR NOT, IF IT IS JUST A SINGLE CUE
end repeat
end tell
Thanks in advance:
Best,
Kalman