I am trying to write a simple script for
salling clicker.
what I am trying to do is send a virtual keystroke of "fn + f4" which is a shortcut set by my laptop to change primary monitors.
I need to work out what the virtual key stroke codes for fn and f4 are.
this microsoft site is very helpful
http://msdn.microsoft.com/library/default.asp?url...irtualKeyCodes.asp
as far as a know this 'fn' is not very common on keyboards and as such is a special key which is not documented on that site. so my question is does anyone know of what the keystroke resembling fn is or how I could go about finding it?
I have been googling and came up with FF but i have tried this line and its not working so maybe that key code was specific to the persons keyboard that posted it. by the way, as far as i can tell f4 is 73??
code:
SendVirtualKeystroke( 0xFF|0x73, true, false, false, false );