How to resolve the algorithm Keyboard input/Obtain a Y or N response step by step in the LiveCode programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Keyboard input/Obtain a Y or N response step by step in the LiveCode programming language
Table of Contents
Problem Statement
Obtain a valid Y or N response from the keyboard. The keyboard should be flushed, so that any outstanding key-presses are removed, preventing any existing Y or N key-press from being evaluated. The response should be obtained as soon as Y or N are pressed, and there should be no need to press an enter key.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Keyboard input/Obtain a Y or N response step by step in the LiveCode programming language
Source code in the livecode programming language
on KeyDown k
if toUpper(k) is among the items of "Y,N" then
answer "Thanks for your response"
else
answer "You need to enter Y or N"
end if
put empty into me
end KeyDown
You may also check:How to resolve the algorithm Associative array/Iteration step by step in the Chapel programming language
You may also check:How to resolve the algorithm Short-circuit evaluation step by step in the PowerShell programming language
You may also check:How to resolve the algorithm Find the intersection of a line with a plane step by step in the RPL programming language
You may also check:How to resolve the algorithm Find common directory path step by step in the D programming language
You may also check:How to resolve the algorithm Reverse words in a string step by step in the C programming language