Quantcast
Channel: beginners - openFrameworks
Viewing all articles
Browse latest Browse all 4929

Osc-Messages between 3 apps parallel not working

$
0
0

@niels wrote:

Hi there,
I want to manage Values inside Resolume where I am able to send OSC-Messages locally. That works fine with Openframeworks and Processing. But not when I want to run both. The program opened first recieves the Resolume Messages. But not the second one. On a local computer there is just a sending and recieving port which I can assign.
port
Is this a common problem?
it works like so in processing and similar in openframeworks:

void oscEvent(OscMessage theOscMessage) {
  

  oscAdress = theOscMessage.addrPattern();
 
  if(oscAdress.equals("/composition/layers/15/clips/1/video/effects/transform/anchorx") == true){
    float i = theOscMessage.get(0).floatValue();
    min = (int)map(i,0,1,1,255);
  }
}


Thanks ahead!

Posts: 2

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 4929

Trending Articles