
Re: User Control buttons issue. Syntax issue?
Hi D1581A,
Thanks for posting your code nicely to the forum! It seems that your conditionals (checking for button presses) are outside of your while(true) loop.
The while(true) loop will continue forever, which prevents your code from ever getting past line 14 (as posted above).
Try including the if statements within the while(true) loop, by removing the '}' and '{' from lines 14 and 16 and see what happens: