4,346 questions
Advice
0
votes
0
replies
39
views
Is it possible to customize key bindings in MeshLab to match SolidWorks navigation?
I'm looking to replicate SolidWorks-style 3D viewport navigation in MeshLab, similar to what I've already done for Blender via a custom Python add-on.
In SolidWorks, the navigation controls work as ...
1
vote
0
answers
115
views
How to get accurate Mouse/Trackpad deltas on macOS when using CGWarpMouseCursorPosition?
I am working on a remote control application for macOS where I need to maintain two "virtual" cursors:
Remote Cursor: Follows the remote user's movements.
Local Cursor: Follows the local ...
1
vote
2
answers
98
views
Buttons of irregular shape in QML
I need to make a collection of buttons of irregular shape -- similar to a puzzle where each piece is a button. They do not overlap, do not necessarily cover the whole window and may have gaps. In ...
0
votes
0
answers
109
views
Scroll step by step process not working as expected
I built a zig-zag horizontal scrolling timeline with HTML, CSS, and JavaScript.
It works fine as a standalone HTML file, but when I add it inside Elementor (WordPress) using the HTML widget, the ...
1
vote
0
answers
162
views
How to control the mouse and keyboard on the Windows lock screen?
I am developing a remote desktop application, and when the Windows screen is locked (WIN+L), the user mode API (SendInput) fails, GetLastError() return 5 ("access is denied").
Without ...
2
votes
0
answers
130
views
Mouse Cursor in 16-bit Assembly (NASM) Overwrites Screen Content in VGA Mode 0x12
I'm developing a PS/2 mouse driver in 16-bit assembly (NASM) for a custom operating system running in VGA mode 0x12 (640x480, 16 colors). The driver initializes the mouse, handles mouse events, and ...
0
votes
0
answers
103
views
How to end SC_SIZE command (resizing of the window) with Right Mouse Button release?
I have a WINAPI application and I want the user to be able to resize the window with the Right Mouse Button.
Calling SendMessage(hwnd, WM_SYSCOMMAND, SC_SIZE + WMSZ_BOTTOMRIGHT, 0); in a ...
2
votes
0
answers
164
views
Mouse Pointer does not wish to work well with Esp32 when using the FabGL library, using the PC Emulator example
I’m currently having a major problem with the Esp32, and using a mouse pointer in regards to getting the Esp32 to display a cursor upon my VGA or Video Graphics Array screen, I have successfully ...
1
vote
1
answer
61
views
how to stop mouse offset when clicking a draggable div? (jquery)
$(document).ready(function() { $(".drag").draggable(); });
this is the code for my draggable div, I am having an issue where the mouse snaps diagonally about half the div height when ...
1
vote
0
answers
65
views
Mouse movement accuracy problem via Bluetooth HID
I'm developing a task automation bot in Python that remotely controls a mouse and keyboard via Bluetooth HID. The bot uses a C driver to send keyboard and mouse commands via Bluetooth, emulating an ...
0
votes
1
answer
178
views
powershell script to move mouse every 60 second
A PowerShell script to move the mouse every 60 seconds can be created using the System.Windows.Forms namespace. The script works by simulating small mouse movements at regular intervals using a loop.
0
votes
1
answer
76
views
sikulix 2.0.5 detect if mouse pointer is idle or busy
In my website, I am using a Java Applet. The mouse pointer changes to busy whenever I click a link in the JApplet.
I want to check if mouse pointer is idle or busy. I have tried to import win32gui as ...
-2
votes
1
answer
111
views
How to move an object to the mouse with a set max speed in Windows Forms using C#
The problem is that I can't make the object follow my mouse at a certain speed. I managed to make it follow the mouse, but it increases the speed the further away it's and get slower the closer it's.
...
-1
votes
1
answer
86
views
How to get keyboard and mouse raw data on python with os and file opening only on MacOS and Linux
I am making a program that gets low level data from the operating system in Python. But the 2 that I can't really get are: keyboard and mouse. On Linux, mouse is fine, its just this file: /dev/input/...
0
votes
0
answers
63
views
GetSystemMetrics with SM_MOUSEHORIZONTALWHEELPRESENT always returns 0?
I'm calling GetSystemMetrics(SM_MOUSEHORIZONTALWHEELPRESENT) and it always returns 0. Thing is, I know I have a horizontal scroll on my mouse (and the raw input device information does come back with ...
