I'm asking if there's a way to essentially block off the rest of the program and only have access to a limited set of the program, for example
if speech.said("Lock"):
Lock = true
speech.say("Locked");
if Lock = true:
[The continuation of this is my issue.]
How do I continue this portion of the code? I'm completely new to Python as well, I've only had 3 days working with it. If you don't mind explaining thoroughly, any advice would be greatly appreciated! I'm making this with FreePIE, a programmable input emulator. It's much more flexible than the original GlovePIE, which has been discontinued, and Python is much more complex than I anticipated, I've been stuck on the lock issue for 2 days.. so literally anything is better than what I've got now, any simple solution to workarounds.
Thanks again, Austin.