yes it can. You should check out RootPanel.get().add(widget, x, y) method to position several Composite widgets on your page, and use a Timer to schedule(delay) the moving of those composites in a Math.random manner using RootPanel.get().setWidgetPosition(widget, x, y) to reposition. You can use methods in the Window class to get the window size and some simple maths to ensure your widgets do not go off screen.
The Composite would probably hold the various Images of the butterfly, and would place them on an AbsolutePanel using use add(image, 0,0) for all of them. It would also use a Timer to schedule(delay) step through each image by changing it's setVisible(boolean) method to show and hide each image in turn. //Adam On 9 Feb, 16:48, ytbryan <[email protected]> wrote: > hi all, > > i wanna create animation using gwt. can gwt do > thishttp://designerwiz.com/roberto/flying_butterfly.htm? > > can someone advice me where do i start from? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" 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-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
