Search found 735 matches

by admin
22 Mar 2013, 08:35
Forum: HOW-TOs and documentation
Topic: keyboard in italic
Replies: 1
Views: 3471

Re: keyboard in italic

I was describing it little bit in this post . Devices grayed out are those found in xml, but not actually connected to computer. The identification is done by device id assigned by windows and displayed in Devices tab. So if you plug your keyboard back and it gets different device id, you have to tr...
by admin
22 Mar 2013, 08:29
Forum: HOW-TOs and documentation
Topic: keystoke perform "on off" in a push
Replies: 2
Views: 4593

Re: keystoke perform "on off" in a push

It's not possible exactly for the reason you have described. Keyboard driver keeps sending "key down" events if you hold the key and you can switch this off only globally in Windows. So it make me sense to me add support for down/up events for keyboard. On the other hand this is the reason why I cod...
by admin
21 Mar 2013, 08:43
Forum: HOW-TOs and documentation
Topic: keyboard sequence with "f" keys
Replies: 2
Views: 7543

Re: keyboard sequence with "f" keys

Try ^{F12}
by admin
18 Mar 2013, 08:10
Forum: HOW-TOs and documentation
Topic: Specific shortctuts for specific apps & ][ ssue
Replies: 8
Views: 8721

Re: Specific shortctuts for specific apps & ][ ssue

As AHK is open source it should be possible to find out.
But I have other things to code which are more important by my opinion:
- 64b plugin for Xplane (my personal needs :-)
- config switching we discussed
- "dead" keys in some keyboard layouts
So this one... maybe, not sure when.
by admin
17 Mar 2013, 21:46
Forum: HOW-TOs and documentation
Topic: Specific shortctuts for specific apps & ][ ssue
Replies: 8
Views: 8721

Re: Specific shortctuts for specific apps & ][ ssue

I have the same results from my test. HIDmacros sends the keystrokes, but those are interpreted by keyboard driver (keyboard layout). So if you have keyboard sequence related to en keyboard and your active application uses cs keyboard, you get different characters - exactly as you have described. Si...
by admin
15 Mar 2013, 08:46
Forum: HOW-TOs and documentation
Topic: Specific shortctuts for specific apps & ][ ssue
Replies: 8
Views: 8721

Re: Specific shortctuts for specific apps & ][ ssue

"stops working" means all other text is sent except [ and ]? I have Win7 64b home premium, en as default keyboard layout and cs as alternative layout. I was testing with en only, so I can try to switch to cs (and back). I'll think of adding script command like LoadConfig(name_of_xml_file). It should...
by admin
14 Mar 2013, 08:43
Forum: General
Topic: Bug: Kbd1 becomes Kbd2 , 3 , 4 etc
Replies: 8
Views: 11174

Re: Bug: Kbd1 becomes Kbd2 , 3 , 4 etc

With 2.3 beta version you should never lose your macros as any not-detected keyboard found in xml configuration file is also displayed and you can easily transfer macros to different keyboard. The keyboard is getting some internal identification which is also displayed at Devices tab. When the keybo...
by admin
13 Mar 2013, 23:48
Forum: Feature requests
Topic: Add PMDG 737NGX events to the FSX Events list
Replies: 23
Views: 37717

Re: Add PMDG 737NGX events to the FSX Events list

Michal,

download the exe again, execute (with admin rights) and try to use script like

Code: Select all

HIDMacros.FSXEventByTitle "Nav 1 radio swap", 0
The first argument is event title - second part of line in lst file, so would be your PMDG event user-friendly string.
by admin
13 Mar 2013, 23:45
Forum: HOW-TOs and documentation
Topic: Specific shortctuts for specific apps & ][ ssue
Replies: 8
Views: 8721

Re: Specific shortctuts for specific apps & ][ ssue

No, this is currently not possible.
Maybe you could have this behavior using scripts, asking for active application/window name.

I have no problems to send [Text] to notepad (just tested)....
by admin
12 Mar 2013, 12:24
Forum: Feature requests
Topic: Add PMDG 737NGX events to the FSX Events list
Replies: 23
Views: 37717

Re: Add PMDG 737NGX events to the FSX Events list

My point is what is the difference for you in script for those 2 commands: HIDMacros.FSXEvent PMDG_EVT_MCP_FD_SWITCH_L, 0 HIDMacros.FSXEvent "#70010", 0 'PMDG_EVT_MCP_FD_SWITCH_L I don't see any added value apart having nice script (but who cares :-)) Btw even if I add some function for sending even...