I'm working on an app for android using lib pd, nexus osc (via webview) and as far as most things are considered it's working just fine. I was hoping to save myself some time and re-factoring of my old pd patch and use that.
The problem being this:
Nexus osc via a javascript function is sending data from UI elements in the following format (as confirmed by a printout, logging of both pd as well as android studio) "Position1 click 0.32 0.44"
in my main patch I have [route position1] and then a print object for testing. Technically I should see "click 0.32 0.44" but I'm not seeing anything on the first outlet. Interestingly if I send a message of the same sort to say an object that expects just a float the error messages are different too. via internal message in the patch [Position1 click 0.32 0.44" I get an expected : inlet expected 'float' but got 'Position1"
If i use libpd to send the message to the *~ object it says inlet expected float but goat 'Position1 click 0.32 0.44'
i'm baffled but assume i'm missing something VERY obvious. Any help would be greatly appreciated.