nxtbasic : starts automatically without pressing a button.

This is the starting place for reporting bugs to the team. We will pass bug reports on to the developers after validating the reports.

You can report bugs in hardware, operating system (KERNAL or BASIC ROMs), the emulator, or the Demo library. For bugs specific to downloaded programs, use the download forum.
Post Reply
funkheld
Posts: 322
Joined: Mon Feb 26, 2024 11:11 am

nxtbasic : starts automatically without pressing a button.

Post by funkheld »

hello, good day.
it starts automatically without pressing a button?

why.

thanks.
greetings

------------------------
SCREEN 128

StartEdit:
Loop:
Key$=GET
if Key$="D" then g = 129 : test()
Goto loop
end

sub test()
print "HALLO"
end sub
--------------------------



---------------------------
SCREEN 128

StartEdit:
Loop:
Key$=GET
if Key$="D" then g = 129 : gosub test
Goto loop
end

test:
print "HALLO"
return
---------------------------
Attachments
fehler.jpg
fehler.jpg (27.22 KiB) Viewed 1157 times
Post Reply