i just started to learn java as an excercise iam writing program wchich will move
button(catch me!!) from one site to another
Code:
//in javascript i would do something like that:

var s = setInterval("move()",100);

function move(){
               //my code ...
}
how would you translate that into java?
could anyone point me in good direction ...?
...