I use the keyPressed handler pretty extensively for debug purposes. OS X Simulator 3.0.0 (and possibly earlier, I’m not sure) no longer triggers all the events of previous versions. For example, I have actions mapped to the , and . keys to cycle through information, and complementary actions mapped to < and > (same key, with SHIFT modifier) to cycle through information in an alternate way. The keyPressed handler no longer triggers for the modified keys. Instead, these combinations result in a system “beep” to signify that the input isn’t handled. Why were these removed? With limited keys, it was very useful to be able to check for upper/lower, or for alternate characters, even without the ability to explicitly check for modifier keys independently.
I've got that filed, aiming to have a fix in for 3.0.2.
1 Like
That’s great, thanks!