Hello list,
I am having a problem using the [next 1] function of the [qlist] object it seems that every time I try to skip a number in the list it just plays that number with out suppressing out put as it promised in the documentation? Is this something that others have found? Or am I doing something wrong? Also can you skip more than one step i.e. [next 2]. I am trying to build a sequencer, but having trouble with this not working. I am using version pd 0.36-0
#N canvas 226 181 452 302 12; #X obj 159 144 qlist; #X msg 47 96 add 1; #X msg 115 80 add 2; #X msg 191 65 add 3; #X msg 229 87 add 4; #X obj 215 184 nbx 5 14 -1e+037 1e+037 0 0 empty empty empty 0 -6 0 10 -262144 -1 -1 4 256; #X msg 189 28 next; #X msg 116 31 next 1; #X obj 104 209 print; #X msg 262 36 bang; #X obj 207 211 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X msg 308 67 clear; #X msg 263 6 rewind; #X connect 0 0 5 0; #X connect 0 0 8 0; #X connect 0 1 10 0; #X connect 1 0 0 0; #X connect 2 0 0 0; #X connect 3 0 0 0; #X connect 4 0 0 0; #X connect 6 0 0 0; #X connect 7 0 0 0; #X connect 9 0 0 0; #X connect 11 0 0 0; #X connect 12 0 0 0;
Hallo, Pixelcorrection@wmconnect.com hat gesagt: // Pixelcorrection@wmconnect.com wrote:
I am having a problem using the [next 1] function of the [qlist] object it seems that every time I try to skip a number in the list it just plays that number with out suppressing out put as it promised in the documentation? Is this something that others have found?
I also get message output with pd-0.37 while using "next 1"...
Frank Barknecht _ ______footils.org__
hi,
Pixelcorrection@wmconnect.com wrote: ...
I am having a problem using the [next 1] function of the [qlist] object it seems that every time I try to skip a number in the list it just plays that number with out suppressing out put as it promised in the documentation? Is this something that others have found? Or am I doing
in fact, the qlist in your patch does not play anything at all, because it contains only time-stamps (delays), no data (messages).
There should be "add <delay> <target> <message>", not just "add <message>" (as in the textfile's case).
The 'next 1' suppresses <message> from being sent to a <target> (remotely), but still sends a <delay> through the left outlet (which makes sense after all...)
something wrong? Also can you skip more than one step i.e. [next 2]. I am trying to build a sequencer, but having trouble with this not
"next 1, next 1"
Krzysztof