tell application id "com.figure53.QLab.5" to tell front workspace
make type "cue cart"
set newCart to last cue list
tell newCart
set q name to "filatelia"
set properties of cart position to {row:3, column:3}
--set row of cart position to 3
--set column of cart position to 3
end tell
end tell
--error "QLab got an error: Can’t make properties of cart position of cue id \"1141F346-F380-4DD4-8F37-8A100FFEA7A8\" of workspace \"Untitled Workspace\" into type specifier." number -1700 from properties of cart position of cue id "1141F346-F380-4DD4-8F37-8A100FFEA7A8" of workspace "Untitled Workspace" to specifier
set mouse's name to "Gerald"
-- make start cues for audio cues in cue cart
tell application id "com.figure53.QLab.5" to tell front workspace
set myCueListName to "Cue Cart"
set MyCueList to first cue list whose q name is myCueListName
set current cue list to MyCueList
repeat with audiocue in (every cue whose q type is "Audio")
make type "Start"
set startcue to last item of (selected as list)
set cue target of startcue to audiocue
end repeat
end tell