Hi all,
I meet problems writing realtime values in a text file. Here are two ways I used [textfile] (you can try these patches in the attachment)
This way works:
[100(
|
[until]
|
[f] [+ 1] connected for a counter
| | cables: come from the same outlet of [f] and go to two inlets of [pack f f]
[pack f f]
|
[add $1 $2(
|
[textfile]
This way doesn't work (it only saves the first values):
[metro 10]
|
[counter]
| | cables: same connection as above
[pack f f]
|
[add $1 $2(
|
[textfile]
I think this comes from the fact that in the first way, datas are generated instantaneously, where the second way's datas are generated in any time (here depending on the metronome period). And this is precisely what I aim to do.
Can anyone propose a method to acheive that? You would really really help me!
Thanks