We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpSound,  Music Libraries › comunication between P5 and isadora via oscP5
Page Index Toggle Pages: 1
comunication between P5 and isadora via oscP5 (Read 1686 times)
comunication between P5 and isadora via oscP5
Mar 26th, 2008, 11:32am
 
Hello,
I try to send data from isadora to processing in OSC.
I use the oscP5 librairy
i turned use type on in izzy
But it seem that P5 dont recongnize the type tag from isadora
So i cant receive no message in P5.
Code:

import oscP5.*;
import netP5.*;

OscP5 oscP5;
NetAddress myRemoteLocation;

void setup() {
oscP5 = new OscP5(this,1234);
myRemoteLocation = new NetAddress("127.0.0.1",1234);
}

void draw() {
}

void mousePressed() {
OscMessage myMessage = new OscMessage("/1");
oscEvent(myMessage);
}

void oscEvent(OscMessage theOscMessage) {
print("### received an osc message.");
print(" addrpattern: "+theOscMessage.addrPattern());
println(" typetag: "+theOscMessage.typetag());
}

Any idea?
regards.
Re: comunication between P5 and isadora via oscP5
Reply #1 - Mar 26th, 2008, 3:24pm
 
I got it!
Choose a different port for in and out message.
It work
coooool
Re: comunication between P5 and isadora via oscP5
Reply #2 - May 14th, 2010, 2:26am
 
Hello, what is your configuration of the "osc Transmit" in isadora?

Thanks in advance!
Page Index Toggle Pages: 1