<HTML><HEAD></HEAD>
<BODY dir=ltr>
<DIV dir=ltr>
<DIV style="FONT-SIZE: 12pt; FONT-FAMILY: 'Calibri'; COLOR: #000000">
<DIV>/* Possible bug in chuck 1.3.5.0, beta 7, win32</DIV>
<DIV>the following is typical osc out -- see examples/osc/s.ck.</DIV>
<DIV>The issue is that I want to simply send one packet, not a continuoue stream 
of data.</DIV>
<DIV>If I remove the while loop, chuck crashes.</DIV>
<DIV>If I break out of the while loop (uncomment the break below), chuck 
crashes.</DIV>
<DIV>If I use any other block (if statement, or just braces with no leading 
clause), chuck crashes.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Can someone explain this behavior; it makes no sense to me!!!</DIV>
<DIV>*/</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>"localhost" =&gt; string hostname;</DIV>
<DIV>9999 =&gt; int port;</DIV>
<DIV>&nbsp;</DIV>
<DIV>OscOut xmit;</DIV>
<DIV>xmit.dest( hostname,port);</DIV>
<DIV>&nbsp;</DIV>
<DIV>while (1) {</DIV>
<DIV>xmit.start( "/input/gain" );</DIV>
<DIV>&nbsp;&nbsp;&nbsp; xmit.add (2.2);</DIV>
<DIV>xmit.send();</DIV>
<DIV>//break;</DIV>
<DIV>1::ms =&gt; now;</DIV>
<DIV>} // while</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV></DIV></DIV></BODY></HTML>