Search found 6 matches
- 12 Apr 2017, 04:54
- Forum: Bug reports
- Topic: Always showing "Not running"
- Replies: 2
- Views: 6234
Always showing "Not running"
The status bar always shows "Not running" meaning it's difficult to know if a script is executing or not. Additionally there's no stop button to terminate an already running script.
- 12 Apr 2017, 04:29
- Forum: General
- Topic: Handled flag?
- Replies: 1
- Views: 3329
Handled flag?
Is there any way of telling the callback that the current button/direction wasn't handled by the handler so that the button/direction doesn't get trapped but passed on? The way I'm handling it so far is as follows, but this does ignore direction and doesn't send the original button but the ASCII cod...
- 12 Apr 2017, 04:13
- Forum: General
- Topic: Trapping and sening arrow keys
- Replies: 1
- Views: 4895
Trapping and sening arrow keys
How do I trap and send arrow keys? What if I wanted to send Ctrl + Left Arrow, for example? Is there a list somewhere of all the trappable and send-able keys?
- 12 Apr 2017, 03:05
- Forum: HowTos
- Topic: Tutorial:App filter script
- Replies: 6
- Views: 15174
Re: Tutorial:App filter script
Not sure how to do this in LUA, but here's how it's done in C++ (from http://stackoverflow.com/questions/2397578/how-to-get-the-executable-name-of-a-window)... while(true) { Sleep(250);//reduce cpu usage CHAR __name[MAX_PATH];//name buffer HWND hwnd;//window handle DWORD pid;//process pid hwnd=FindW...
- 12 Apr 2017, 02:56
- Forum: HowTos
- Topic: Tutorial:App filter script
- Replies: 6
- Views: 15174
Re: Tutorial:App filter script
Detecting apps based on their captions is not very reliable. Other macro software that comes with gaming keyboards/mice, all use the executable to define such filters, i.e., the user browses to the executable to select which one that applies in each instance and the software then evaluates the path ...
- 12 Apr 2017, 02:45
- Forum: General
- Topic: Multiple Keyboards and multiple apps
- Replies: 3
- Views: 6491
Re: Multiple Keyboards and multiple apps
Most macro software, such as the software that comes with my SteelSeries keyboard, uses the executable's path not the caption of a window as an identifier, after all, the window caption, etc., can change while the executable path remains mainly unchanged. I would therefore suggest utilizing the curr...