[Google Wave APIs] Re: Bug: Able to add contacts to invitations wave

2009-11-25 Thread Vivek
Wave is all about collaboration and I feel its helpful to share our invites with our friends. And robots cant harm the invite wave unless we add them to wave!!! On Nov 25, 10:55 pm, Olreich wrote: > Sounds dangerous, I would suggest being extremely careful about who > you invite to your waves all

[Google Wave APIs] Re: how to access sibling of root blip

2009-11-14 Thread Vivek
i could not find the method to access a blip by its id. Can you tell me how to do it in java? -- You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group, send email to google-wave-...@googlegroups.com. To unsubscribe from this gro

[Google Wave APIs] Re: Blip ID, OnBlipSubmitted

2009-11-12 Thread Vivek
when you catch the event "EventType.BLIP_SUBMITTED", you can access the blip through the method getBlip(); then you can use getBlip().getDocument().getText() to access the content of the BLIP. This will return you a string which you can search using usual java functions! rgards, vivek

[Google Wave APIs] Re: how to access sibling of root blip

2009-11-12 Thread Vivek
I tried it. Its giving "java.lang.NullPointerException " when im trying to access the children of root blip. -- You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group, send email to google-wave-...@googlegroups.com. To unsubscri

[Google Wave APIs] how to access sibling of root blip

2009-11-12 Thread Vivek
some one suggest me how can i access the already existing blips in a wavelet. -Vivek. -- You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group, send email to google-wave-...@googlegroups.com. To unsubscribe from this gr

[Google Wave APIs] Re: problem with setStyle

2009-11-12 Thread Vivek
Actually , it did work!! the text is becoming bold.. But the last letter is left normal every time!! can some 1 tell me why?? or is it an issue with the function itself?? -- You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group

[Google Wave APIs] problem with setStyle

2009-11-11 Thread Vivek
I recently started using wave API I wrote a code for editing the blip submitted by any participant. if (e.getType() == EventType.BLIP_SUBMITTED ) { Blip blip = e.getBlip(); blip.getDocument().setStyle(StyleType.BOLD); //StyledTe

[Google Wave APIs] Re: BLIP_SUBMITTED is not triggered in sandbox

2009-11-10 Thread Vivek
I just creadted a robot which responds to any new BLIP added by responding to BLIP_SUBMITTED event. But its not working when I deployed it. Please help me!! my code is if (e.getType() == EventType.BLIP_SUBMITTED ) { Blip blip = e.getBlip(); Text