Hello. I want create a macro which is waiting not only for one keys rather two. If you chose A key goto "x". If i chose E key goto "y". Currently Macro Express don't support waiting for 'x' OR 'y' key. Can somebody help me with a workaround ?
Here is an example from my idea (careful it is not working !)
MessageBox: Info
Delay: 1 seconds
Wait for Key Press: A
OR
Wait for Key Press: E
// evaluation
Switch( %keystroke% )
Case: A
// do something useful
End Case
Case: E
// write some text
End Case
End Switch
----------------------------------------------------------------------------------