This is what Currently happens:
User Msg
Bot Msg
User 2 Msg
User Msg
Bot Msg
Bot Msg (reply to usr 2)
This is what I want:
User Msg
Bot Msg
User 2 Msg
Bot Msg reply
User Msg
Bot Msg
This is my current code snippet:
@Override
public void onBlipSubmitted(BlipSubmittedEvent event) {
Blip blip = event.getBlip();
event.getWavelet().reply("\n" + GetBotMSG(blip.getContent()));
}
(The GetBotMSG function gets the bot's message using an XML parser)
--
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-...@googlegroups.com.
To unsubscribe from this group, send email to google-wave-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-wave-api?hl=en.
On Apr 2, 6:01 am, Kapil Neurgaonkar <caps...@gmail.com> wrote:
> Use the reply method of the blip instead of wavelet.
>
> event.getBlip().reply().append("Your content");
>
> Regards,
> Kapil Neurgaonkar
>
> > google-wave-a...@googlegroups.com<google-wave-api%2Bunsu...@googlegroups.com>