I'm trying to add to this code so it will auto-run the string for button.g == 1, after 10 seconds of not clicking the button.
{
if(button.g == 0)
{
f.a(parent);
AutoJoin.instance.resetCache();
}
if(button.g == 1)
{
AutoJoin.instance.screen = new AutoJoinScreen(parent, info);
f.a(AutoJoin.instance.screen);
}
if(button.g == 2)
f.a(new PropertiesScreen(this, info.ip));
}
You can use
setTimeout
to "delay" an action:With
clearTimeout
you can abort such a timer:In your example you could start a timeout which executes the logic for
button.g == 1
and cancel the timer if any button is clicked:Setting the timer to 10s:
Click routine: