![](https://secure.gravatar.com/avatar/8c2392da041304fda667e525f3e80fdd.jpg?s=120&d=mm&r=g)
4 May
2008
4 May
'08
2:43 p.m.
hi, i'm trying to send an OSC message from SuperCollider to chuck, which doesn't work. no matter what i do, the OscEvent seems never to be decoded... ChucK: OscRecv recv; 6449 => recv.port; recv.listen(); recv.event( "/test, i" ) @=> OscEvent oe; spork ~ pollOscEvent(); fun void pollOscEvent() { while ( true ) { oe => now; while( oe.nextMsg() ) { <<< "LALA" >>>; <<< oe.getInt() >>>; } } } SC: NetAddr( "127.0.0.1", 6449 ).sendMsg( "/test", 33 ); what am i doing wrong? i tried other ports without success... thanks, -sciss-