Search found 5 matches

by mst
11 Nov 2016, 21:09
Forum: Bug reports
Topic: Adobe Illustrator not supported?
Replies: 3
Views: 9414

Re: Adobe Illustrator not supported?

You are a genius, very competent answer!

AutoHotKey exe files integrated into Lua Macros solves all my problems!

Thank you, unimagined possibilities :!:

Example for "selecting all":

LuaMacros:

Code: Select all

elseif (button ==  51) then lmc_spawn("C:\\m1.exe")
AutoHotKey:

Code: Select all

Send ^a
by mst
10 Nov 2016, 14:26
Forum: Bug reports
Topic: Adobe Illustrator not supported?
Replies: 3
Views: 9414

Adobe Illustrator not supported?

Hello, I try to send shortcuts to my Adobe Illustrator CS2 application, but there is no result?! The lua-code works well with the other applications like photoshop, artrage, ... , but the Illustrator does not react to any lmc_send_keys command for example like the undo command elseif (button == 32) ...
by mst
03 Nov 2016, 19:27
Forum: General
Topic: Windows Key Supported?
Replies: 4
Views: 9620

Re: Windows Key Supported?

Ok, I found the solution: It is the '#'. Sorry :mrgreen: But now I have the next question: Can I define, that the Windows-Key stays pressed down until the moment I press a other certain key? For example: I want to define following code: Win-Key down ... Tab-Key down ... Tab-Key up ... Tab-Key down ....
by mst
03 Nov 2016, 17:44
Forum: General
Topic: Windows Key Supported?
Replies: 4
Views: 9620

Windows Key Supported?

Hello, I want to define hotkey-combinations including the Windows-Key. But in the list of supported modifiers for keystroke sequence I find Shift, Control and Alt, but not the Windows-Key :cry: Is there a posibility to define key-combinations with the Windows-Key, too? Thank you for your answer! Mar...
by mst
29 Oct 2016, 12:11
Forum: General
Topic: documentation
Replies: 1
Views: 3773

documentation

Hello,
I search a small documentation which commands are good for what!

For example: How can I start an exe-file?
'if (button == string.byte('C')) then lmc_spawn("calc")'
works well opening the win-calculator, but how can I open a custom application?

Thank verry much for a good answer ;-)