We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I am having a feeling that the fact that i left those methods empty is having anadverse effect on my program. For instance, once i use a TUI object to carry out a function, as soon as it brings forth the function, i can't use it again to carry out a subsequent function.
void addTuioObject(TuioObject obj) {
int id=obj.getSymbolID();
if(page=="options")
{
if(id==1) {
text("this is the options page");
}
}
Answers
I know nothing about TUIO, but when I see == used to compare strings, I know something is wrong in the code... :-)
if(page.equals("options"))
you can also use ctrl-t for indents / auto-format