I'm trying to test to see if something is NOT said. Here is what I came up with:
(if(not Said('look'))
Print("You did NOT type look")
)
...which works, sort of. The problem is that the print statement is displayed for every keystroke & mouse click. Once I finally get the text input box to show up (after many gyrations of keystrokes & mouse clicks), and I type 'look', the print message is not displayed, which is precisely what is desired.
Anyone got any ideas how to accomplish this correctly?