Questions tagged [logitech-gaming-software]

Logitech Gaming Software lets you customize Logitech G gaming mice, keyboards and headsets. This tag is pertinent to both old (LGS) and new (G HUB) Logitech software as they expose the same Lua API.

265 questions
5
votes
1 answer

After table.getn got deprected in Logitech 5.4 LUA this code doesn't seems to work anymore

After Logitech API got updated for the 5.4 Lua version, table.getn got deprected and some guys that helped me said I could update the code with # but the logic of the code doesn't seems to work anymore with this replacement, I have tried making some…
Alysius
  • 51
  • 2
5
votes
2 answers

Logitech scripting combining keystroke and mouse click

I'm trying to make a script that repeatedly clicks left mouse button when I hold left control key with left mouse button at the same time This is what I have so far: function OnEvent(event, arg, family) OutputLogMessage("clicked event = %s, arg =…
Liam
  • 6,517
  • 7
  • 25
  • 47
3
votes
1 answer

How can I capture G-Key input using Logitech G-Key Macro SDK without focus?

I have implemented a check for G-Keys being pressed in a Windows Forms Application (C#) using the Logitech G-Key Macro SDK. Specifically using a wrapper class and the supplied LogitechGkeyEnginesWrapper.dll exactly as it suggests in the…
aaronedmistone
  • 929
  • 10
  • 17
3
votes
0 answers

Wine error "could not find or load the Qt platform plugin windows"

I´ve been working on porting a program called "Logitech Gaming software" to mac. I've downloaded a wrapper called "steamliner" http://portingteam.com/files/file/8146-steamliner/ I downloaded this steam wrapper because it had the .net program "mono"…
Ludevig
  • 31
  • 1
  • 3
2
votes
1 answer

Can Logitech G-Hub (script) listen to several events at the same time?

I have a Lua script that works on Logitech G-Hub, and activates on the G4 key being pressed. It looks a bit like this: function OnEvent(event, arg) if (event == "G_PRESSED" and arg == 4) then PressKey("s") Sleep(200) …
John Lexus
  • 3,576
  • 3
  • 15
  • 33
2
votes
1 answer

How to navigate in Xcode with mouse buttons

I would like to know if there is a way to bind a mouse button to a specific keyboard shortcut in Xcode. My specific use case here is to be able to navigate by using the mouse side buttons. It is possible in vscode to Go Back with ⌥⌘9 and Go Forward…
2
votes
1 answer

Media Keys of MX Keys Not Working After Installing Logitech Options

I recently purchased this MX Keys and MX Master combo and was excited to use the keyboard to its full potential but the media keys is not working after I installed the Logitech options software. There is not much research available about it online.…
2
votes
3 answers

Lua logitech mouse 180/360 degree turn

As the title says I'm trying to figure out how to get this piece of stolen code to work :p function OnEvent(event, arg) OutputLogMessage("event = %s, arg = %d\n", event, arg) if (event == "PROFILE_ACTIVATED") then …
HENK pipo
  • 21
  • 1
  • 2
2
votes
1 answer

Instantly abort Lua Script Logitech GHUB "on releasebutton"

Hey guys I recently started trying to write some simple Lua Scripts for Logitech GHUB. I finally got them working the way I like but I'm having troubles with this one. Instead of instantly stopping when I release Mouse5 it will continue to execute…
Peter Lustig
  • 21
  • 1
  • 2
2
votes
1 answer

Logitech Script, Press and hold key until releas

Is it possible to make Logitech scripts targets letters? For example > F Using mouse button 5 if I wanted this logitech script to press hold F key until release of mouse button 5 how would I do that? function OnEvent(event, arg) if event ==…
damian
  • 23
  • 1
  • 1
  • 5
2
votes
2 answers

Logitech Gaming Software lua script code for pure random numbers

I've been trying for days to try find a way to make random numbers in the logitech gaming software (LGS) scripts. I know there is the math.random() math.randomseed() but the thing is i need a changing value for the seed and the solutions from…
2
votes
1 answer

Move Logitech Steering Wheel to angle using Force Feedback API

I'm trying to move a logitech steering wheel to a certain angle and keep it there using the Force Feedback API. I'm fine with absolutely any programming language, on any platform (Windows, Linux, macOS), if you could please provide me a few hints as…
TajyMany
  • 527
  • 7
  • 20
2
votes
1 answer

Logitech's LED Illumination SDK is not working with my G502

I'm trying to get Logitech's own LED SDK working with my G502, but I can't. I'm using SDK version 8.82.7, which is, as of now, the most recent version. I also couldn't find anything on SO or the rest of the internet, so I'm asking here. Here's my…
Peter W.
  • 2,323
  • 4
  • 22
  • 42
2
votes
1 answer

How to target only the Mouse with Logitech LED Illumination SDK

I want to Light just one key on my keyboard (Logitech G910), at the same time as setting the color of the mouse (Logitech G303). Setting a key on the keyboard works fine, but I cannot set the color of the mouse without setting all keys on the…
niklasda
  • 116
  • 6
1
vote
1 answer

Logitech Gaming Software LUA script not working on GHub

I’ve always used this LUA script on Logitech Gaming software by using a G502 mouse, I had to change my old mouse and I bought a new version “G502x” which is not recognized by LGS so I had to install GHub to make the mouse useful, but the script is…
1
2 3
17 18