How to disable screen stand by?

Hi guys, i made a Quiz game, but every 15 sec i need to touch the screen to keep “alive” the screen…
How can i disable the screen stand by?
Thanx [import]uid: 30837 topic_id: 9116 reply_id: 309116[/import]

Easily done!

[lua]system.setIdleTimer( false )[/lua]
That will prevent the screen from dimming/locking.

[lua]system.setIdleTimer( true )[/lua]
That will allow it to dim/lock again.

Peach :slight_smile: [import]uid: 52491 topic_id: 9116 reply_id: 33403[/import]