Search found 16 matches

by I3ordo
25 May 2020, 19:14
Forum: General
Topic: Can you tell me the problem that occurs here and how to solve it.
Replies: 3
Views: 2740

Re: Can you tell me the problem that occurs here and how to solve it.

Thank you! The issue was very much something like that, i had voicemeeter also looking out for those keys (+f23) so both voicemeeter's macro buttons were also sending sending ctrl+key combinations. Once i removed the triggers from VM, crashes gone. But there is something else going on here. Sometime...
by I3ordo
15 May 2020, 11:58
Forum: General
Topic: Can you tell me the problem that occurs here and how to solve it.
Replies: 3
Views: 2740

Can you tell me the problem that occurs here and how to solve it.

Hello all, for months now, my OBS was freezing and nobody was able to pin point the problem as everything was normal on programs end. Yesterday i found that my code was sending wrong keys sequences sometimes. As if either the ctrl or alt keys are were left down. Can you tell me the problem and how t...
by I3ordo
19 Dec 2019, 12:47
Forum: HOW-TOs and documentation
Topic: Question: How to get active window title
Replies: 2
Views: 2766

Re: Question: How to get active window title

admin wrote:
19 Dec 2019, 08:53
create issue at github.
I actualy dont really know which github page is yours, and if os, was wondering about that...

Code: Select all

https://github.com/me2d13/luamacros
You are "me2d13" and also "PeterM. "?
ps: /watching
by I3ordo
19 Dec 2019, 11:19
Forum: HowTos
Topic: lmc_get_window_title() how does it work.?
Replies: 2
Views: 3181

Re: lmc_get_window_title() how does it work.?

i learned something useful today, thank you!
by I3ordo
18 Dec 2019, 16:01
Forum: HowTos
Topic: lmc_get_window_title() how does it work.?
Replies: 2
Views: 3181

lmc_get_window_title() how does it work.?

Tried adding it at the top just under "lmc_device_set_name" but if i run the script via the "play"key https://bx3hna.am.files.1drv.com/y4m6awwwSEOuAQu-qFa7LW-725eeJwVWwUL6Ojv0leCGCJFkuSVPpSCe8MCKVTaee0lrMtlLNvwpvBrJpxXkFeJpcNQme0Kva3agwlusogEZqyqFwmAW1P6vd76aD9VeP-eXFutsM3d-Dzl3eq9U-awzD-68-OaSa9veK...
by I3ordo
18 Dec 2019, 15:15
Forum: HOW-TOs and documentation
Topic: Scripting AppActivate
Replies: 4
Views: 5972

Re: Scripting AppActivate

ttocsic wrote:
08 Nov 2019, 22:05
The only glitch is if the window is already in focus, #3 will toggle it to the background.
same problem here.
wish "lmc_appShow(windowtitle)" such command did exist...
by I3ordo
18 Dec 2019, 13:48
Forum: HOW-TOs and documentation
Topic: Question: How to get active window title
Replies: 2
Views: 2766

Question: How to get active window title

Hello! I want to make a specific window (previously sent to back) to become the active window. I searched the howtos section but the string "active window" did not show any results as those wordsso i thought that i should ask. I found just this "lmc_get_window_title()" but no idea how to use it. Bas...
by I3ordo
05 Nov 2019, 16:53
Forum: Feature requests
Topic: Request: holding key down
Replies: 6
Views: 12708

Re: Request: holding key down

Yes, i searched and found this post http://www.hidmacros.eu/forum/viewtopic.php?f=4&t=3727 which shows if (button == 18) then -- if ALT if (direction == 1) then lmc_send_input(91, 0, 0) -- press WIN elseif (direction == 0) then lmc_send_input(91, 0, 2) -- release WIN end elseif (button == 91) then -...
by I3ordo
05 Nov 2019, 04:01
Forum: Feature requests
Topic: Request: holding key down
Replies: 6
Views: 12708

Re: Request: holding key down

Can you give a line of example for "lmc_send_input" usage?
by I3ordo
06 Feb 2019, 08:10
Forum: HOW-TOs and documentation
Topic: Example script for OBS with usb keypad (homemade streamdeck)
Replies: 7
Views: 13379

Re: Example script for OBS with usb keypad (homemade streamdeck)

admin wrote:
02 Feb 2019, 21:17

To your problem: what about removing the direction condition from the begging and use something like
if (button == 86 and direction ==1) then
?
Thank you, this simple line of "help" solve all my problems regarding to this.