Hello there!
There is 2 addEventListener() in my code:
Runtime:addEventListener("tap",tap\_on\_scrn) btn\_restart:addEventListener("tap",btn\_restart\_pressed)
The problem is, when I’m “pressing” btn_restart my program is calling 2 functions:tap_on_scrn() AND btn_restart_pressed(). But i want to call ONLY btn_restart_pressed().
How to do that?