I'm making a task manager robot for Google Wave but I encounter a
difficulty. I would like to navigate into the wave with java code. I
mean, I want to focus the view on a special blip. If the blip is at
the bottom of the page, I want the wave to scrol down until it reach
the blip. Is it possible ?
Thank you
--
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.
By following steps mentioned in my previuos reply i was able to store participant id and participant profile name only.I couldn`t get profile image.To show the profile images I had to use different workaround.Through bot I created a wave which has all the participants whose profile inforamtion was required and stored waveId in database for later use . In that wave there is a gadget which uses which retrieves profile information by usingvar participant = wave.getParticipantById(userId);
imgUrl = participant.getThumbnailUrl();
dispName = participant.getDisplayName();
Now the whole scenario is like this
1. User creates a new wave and adds bot into the wave.(Let us name this wave as A)
2. bot checks whether waveid of wave which has all the participant whose profile information is required is present in the database.If it is not yet created it creates the wave and add all the userids as participant in it.Then it stores its id to get that wave later. (Let us name this wave as B).
3. then bot embeds a gadget in wave B (Let us call this gadget G1).In this gadget i had to show profile pictures.
4. then bot adds new gadget into wave A.(Let us call this gadget G2). Gadget G2 has html to embed wave B in it.
In this way i was able to show profile information of users. In other way we can say that i used one wave which has all the participants whose profile information i needed