Forum Replies Created
-
AuthorPosts
-
psc
MemberBTW, my interface is working correctly on iOS. i have setup your project in eclipse and i can run it on an emulator, so if you have any hints on how to fix this problem i will try my best (i never coded in java / phonegap) to fix this issue.
psc
MemberEveryone, I am very sorry for this thread… I found the solution (I tried to delete my last question, no option). For those interested:
https://github.com/patricksebastien/heavybox/blob/master/control/heavybox.js#L47
default:
oscManager.processOSC(oscAddress, typetags, args);
break;psc
MemberIt’s working (Android version with PureData) BUT with this piece of code in my interface, I cannot update widgets anymore!
What would be the solution to have both, custom delegate and the default behaviour on the widget (send /myslider 0.4)?
My interface:
https://github.com/patricksebastien/heavybox/blob/master/control/heavybox.js#L47Thanks!
-
This reply was modified 13 years, 3 months ago by
psc.
psc
Membersorry for the noise, found it (not tested) on this post:
http://charlie-roberts.com/Control/?cat=3
oscManager.delegate = {
processOSC : function(oscAddress, typetags, args) {
switch(oscAddress) {
case “/nextPage”:
control.changePage(‘next’);
break;
case “/previousPage”:
control.changePage(‘previous’);
break;
case “/changeToPage”:
control.changePage(args[0]);
break;
}
}
} -
This reply was modified 13 years, 3 months ago by
-
AuthorPosts