i just started to learn java as an excercise iam writing program wchich will move
button(catch me!!) from one site to another
how would you translate that into java?
could anyone point me in good direction ...?
regards
jx2
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 ...
}
could anyone point me in good direction ...?
regards
jx2
Comment