Hey guys,
i’ve been looking around the SVN and found KeyboardObject.as and TextObject.as, I’m trying to load them in my loader (local.as), i’ve called them on stage im okay with that. but Im having trouble connecting the KeyboardObject with the TextObject. Below Im adding both the keyboard object and text object, where t in the TextObject is the Text Field i just cant find the function which links the parameter of keyboard object with the text field.
//Keyboard, Text, and SD Card Monitor
keyboard_0 = new KeyboardObject();
thestage.addChild(keyboard_0);
text_0 = new TextObject();
thestage.addChild(text_0);
keyboard_0./*connect to textfield*/(text_0.t);
I know you guys are brilliant at this so any help you can provide would be very beneficial. I just don’t wanna go around writing my own keyboard and text objects… being a bit lazy atm.
Thanks
Taha
**UPDATE**
Also when i add the KeyboardObject to stage TUIO simulator stops functioning, atm the moment i dont know whether this is because flosc stops working or what because i can see that the flosc server is still running…
**UPDATE**
Thanks to Nuiman and Cerupcat, i got it to work, you need to compile it in FD. If anyone needs the FD project i can provide it to them.
