Sorry, Mark, I didn't understand what you meant by "PS: <global> has not to be typed in!"
This is what I have tried so far:
Code:
this.engineTimer = new Timer();
this.engineTimer.onCallback = this.engineMove();
this.engineTimer.schedule(5000);
But it seems this.engineMove() is triggering immediately, rather than after 5 seconds.
What am I doing wrong?