Equivalent of serviceRepaints method in J2SE
Hello,
I am still struggling with completing my sliding puzzle game.
At the moment, I am having problems with synchronizing the animation of moving a tile from one square to another.
Currently, If I click a tile while another tile is being moved, the tile does not move by the proper amount of pixels.
In J2ME, there is a method called serviceRepaints() which blocks until all repainting has completed.
How would I accomplish the same task in J2SE?
Thanks

