Hi
Is it possible to make a label (@Score) not be blocked?
cheers
barefoot
Not be blocked by what? If a label with @SCORE@ isn't updating during blocking functions (or I'm thinking probably during dialogs?), then you could do it manually, which isn't that difficult.
If it is indeed dialogs, then you need to make sure that the option is properly set in the General Settings to allow it.
Either way:
function repeatedly_execute_always()
{
lblScore.Text = String.Format("Score: %d", game.score);
}
Cheers Monkey
works a treat now.. timer label keeps running... I must remember rep exec always.
:=
barefoot