random cue stack
Moderator: MADRIX Team
-
- Posts: 8
- Joined: Sun Feb 22, 2015 7:10 pm
random cue stack
how dp i make a random cue stack. say i have 100 cues and i want to load them into the stack in a random order. is there a way to do this automatically?
thx
thx
Re: random cue stack
Yes, use the main out macro for this.
The Following code will set your cue each 10 seconds (if your main mixer runs on 50 Frames per second) between cue 1 and cue 100.
The Following code will set your cue each 10 seconds (if your main mixer runs on 50 Frames per second) between cue 1 and cue 100.
Code: Select all
int f;
void InitEffect()
{
}
void PreRenderEffect()
{
f = (f+1)%500;
if(f == 0)
CuelistGoto(random(0,99));
}
LEDs are nothing without control