I’m checking for a return or enter key in a textarea, but none of the lines of the code below registers a Return or Enter key.
If Keyboard.AsyncKeyDown(&h24) Then
System.DebugLog ("Return")
Return True
End If
If Keyboard.AsyncKeyDown(&h4C) Then
System.DebugLog ("Enter")
Return True
End If
If Keyboard.AsyncKeyDown(36) Then
System.DebugLog ("Return Dec")
Return True
End If
If Keyboard.AsyncKeyDown(76) Then
System.DebugLog ("Enter Dec")
Return True
End If