I attached it to a bump button...
Code: Select all
for i = 1,50 do
name = HC.GetProperty('cuelist',i,'name')
if name == "Main Cue List" or name == "" then
else
HC.CueListRelease(name, 1)
end
HC.VariableSet('Variables','Variable ' .. i, 0)
end
The default variables page is attached to the Mkeys.
Variables 1-12 can be setup with 2 actions to give you quick chase access:
OnValue = 0, CueListRelease("Cuelist name")
OnValue = 1, CueListGo("Cuelist name")
By setting the variables back to 0 in the above code, you know that that next hit of the mkey will be sure to start the chase again
You may need to increase the number of loops if you use lots and lots of cue lists (for i = 1, ##)
You can set the name of your main cuelist here - if name == "Name of main cuelist"
edit: modified code with a line that I removed because I forgot why I put it there.... now I remember!
