Hi,
I read in the documentation that one can loop a complex playback. The way I understood, one could load a first sequence (say seq1) and a second sequence (say seq2) and then loop the whole thing. So this should happen:
seq1->seq2->seq1->seq2->seq1->seq2....
But if I set playback_count=1 I get:
seq1->seq1->seq1.....
if I set playback_count=2 I get:
seq1->seq2->seq1->seq1->seq2->seq1.....
How should I set it up to get continuous alternation between seq1 and seq2 forever?
UPDATE: it only happens like this when the seq2 has only one element. If I add a second element to it, it works as expected with playback_count=1. Is this some kind of bug?
Thanks