Hello,
i'm building my first wave robot. I want to detect each character
typed by user in realtime, to translate and suggests translations.
I used DOCUMENT_CHANGED capability, and follow code in my java class
for (Event e : bundle.getEvents()) {
                        if (e.getType() == EventType.DOCUMENT_CHANGED) {
                                Blip blip = wavelet.appendBlip();
                                TextView textView = blip.getDocument();
                                textView.append("WaveAC has intercepted 
DOCUMENT_CHANGED");
                        }
                }

So, after created new wave and added my robot, it continually adds
blip with "WaveAC has intercepted DOCUMENT_CHANGED" message.

Is DOCUMENT_CHANGED designed for detecting keyup event in blip?

Thanks

--

You received this message because you are subscribed to the Google Groups 
"Google Wave API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.


Reply via email to