hi,
in my experiment, i want to allow any key press in order to proceed to the next trial, BUT only one key is the correct key. for all other keys, before proceeding to the next trial, i want to show an "error" feedback. so, i need basically to tell the system something like:

RT:38, any<999

which means that 38 is the correct key and for all other keys show an "error" message and then proceed to the next trial. the problem is that the "any" code includes the 38 code, so the system will jump to 999 for the 38 key as well as for all the others.

I played with this problem a little and found out that if i write

RT: any<999, 38

then it doesn't jump for the 38 code.
can you explain why is that? is this the correct way to do what i need?

thanks!