How can i find out if the user has pressed the FN key ?
For example when i press FN+DELETE, i get a KeyPress event with .Modifiers=0 and .KeyCode=0 and .KeyFunc=0 …
But when i press only DELETE, i get a KeyPress event with .Modifiers=0 and .KeyCode=1286 and .KeyFunc=13 …
If the FN-key is considered as a Modifier key, then why is there no constant for the FN-key among the com.sun.star.awt.KeyModifier constants?
Thanks in advance, lib