Keyboard receiving osc notes

Hi,

I'd like to send notes via osc messages to a keyboard widget. But no keys reacts...

I guess i miss a parameter.
tip wanted !

The address should just be /note.

Merci ! une belle étourderie...
So it works of course

A little question let say i want to clear all notes off ? How can i do ?
a king of all_note_off but not in midi

Well this can be achieved with a loop from the lowest midi value to the latest. code below for sonic pi.

i, last_note = 21, 108
while i < last_note  do

    osc "/clavier", i, 0    
    i +=1
  end