Hi, I love this app. I am having trouble with my layout and could use some pointers, though. Instead of 12 function keys I need 16. I also need shifted function keys 17 through 32. Although I did not expect them all to work I initially defined them as below:
Code:
<row x="5" y="40">
<key>Esc</key>
<key x="+24" shift="F17">F1</key>
<key shift="F18">F2</key>
<key shift="F19">F3</key>
<key shift="F20">F4</key>
<key x="+10" shift="F21">F5</key>
<key shift="F22">F6</key>
<key shift="F23">F7</key>
<key shift="F24">F8</key>
<key x="+10" shift="F25">F9</key>
<key shift="F26">F10</key>
<key shift="F27">F11</key>
<key shift="F28">F12</key>
<key x="+10" shift="F29">F13</key>
<key shift="F30">F14</key>
<key shift="F31">F15</key>
<key shift="F32">F16</key>
</row>
obviously F13 and above did not work. The unexpected thing however, was that once I pressed a key above F12 that key and any function key after that produced a capital F. What I actually need, for instance when I press F16, is for it to send a multi-key sequence, which in this case would be alt+F6. F32, then, would be shift+alt+F6. As shown by the XML above, I need the shifted value to show on the keyboard. How might I accomplish this?
I had thought about user functions but, when I tried that they did not fire. Upon looking at the code, it appeared as though there was no code written to execute user functions. Since my AHK programming is somewhat limited and it has been over a year and a half since I wrote my last AHK GUI script, and those were limited, I thought perhaps I missed something. Since I also wish to define special keys that do things such as a screen capture straight to a JPG file, any suggestions on how I can get user functions to work would be helpful as well. Thanxx.