If you mean to use the syntax of vline like [1 100, 0 50 100 ( to schedule
lines to happen and etc, you can do this in a similar way using a
combination of [pipe f f 0] and line. But note that you are forced to put
the delay of the first message to zero, for that trick to work, so instead
of [1 100, 0 50 100 (you need to use [1 100 0, 0 50 100 (, and if you want
to jump to a start value, you also need to explicitly give time 0 and delay
0, so for example [0 0 0, 1 1000 0, 0.3 300 1000, 0 2000 2000( would first
jump to zero before doing the rest. And if you want to restart the line in
the middle (before it ended), pipe may have scheduled messages waiting, so
you may also want to clear them doing [clear, 0 0 0, 1 1000 0, 0.3 300
1000, 0 2000 2000(

see the file for an example, it does the job, just a bit more verbose to
achieve the way that vline works

Em qui., 20 de jan. de 2022 às 11:21, Peter P. <peterpar...@fastmail.com>
escreveu:

> excuse me if this has been asked before, but is there something like a
> vline for messages? thanks!
>
>
>
> _______________________________________________
> Pd-list@lists.iem.at mailing list
> UNSUBSCRIBE and account-management ->
> https://lists.puredata.info/listinfo/pd-list
>
#N canvas 507 201 450 300 12;
#X obj 42 142 pipe f f 0;
#X obj 42 177 line, f 6;
#X obj 45 221 hsl 128 15 0 1 0 0 empty empty empty -2 -8 0 10 #fcfcfc
#000000 #000000 0 1;
#X floatatom 21 244 5 0 0 0 - - - 0;
#X msg 42 105 clear \, 0 0 0 \, 1 1000 0 \, 0.3 300 1000 \, 0 2000
2000;
#X text 144 151 a bit more verbose \, but does the job to get similar
to vline for messages, f 36;
#X text 43 8 'clear' erases any scheduled message in pipe \, so if
you plan to reset the line and restart in the middle (before it ends
sending all messages) \, it is wise to also clear pipe before sending
the new messages, f 46;
#X connect 0 0 1 0;
#X connect 0 1 1 1;
#X connect 1 0 2 0;
#X connect 1 0 3 0;
#X connect 4 0 0 0;
_______________________________________________
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list

Reply via email to