This may be a silly question but is it possible to read data into a chuck program from a file?<br><br>Given the code below for example, would it be possible to store the parameters for the Std.rand2f function in a text file and have chuck read them from the file on every loop?
<br><font><font><font><font face="verdana" size="2"><font size="2"><font size="3"><pre>// make our patch<br>      SinOsc s =&gt; dac;<br><br>      // time-loop, in which the osc&#39;s frequency is changed every 100 ms<br>
      while( true ) {<br>          1000::ms =&gt; now;<br>          Std.rand2f(30.0, 1000.0) =&gt; s.freq;<br>      }</pre></font></font></font></font></font></font><br>