Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
87 views

If I want consistent scrolling behavior across platforms and different wheel resolutions, I need a way to make wheel input independent of the device’s physical precision. Different mice seem to have ...
Zhi J ZhiJ's user avatar
3 votes
1 answer
80 views

I have a Python app and was looking for a simple keyboard handler to pick up one character inputs to trigger some action for debugging purposes. I found this here: A simple way of detecting keyboard ...
rjapenga's user avatar
  • 277
0 votes
0 answers
47 views

I have a PyQt6 Application in which I have multiple QTextEdits, which contain text that sometimes overflow the visible range of the lines. Using the combination of Shift+Mouse-Wheel, my goal was to ...
Pascal Vallaster's user avatar
0 votes
0 answers
28 views

I'm experiencing an issue with mouse wheel/trackpad scrolling events in a MAUI Blazor app that contains a Fabric.js canvas. Problem Description: When scrolling horizontally with a trackpad, the ...
Guzun Ion's user avatar
0 votes
2 answers
96 views

I'm using this script for mousewheel. What I have tried only works one way. Instead of scroll up and down it just Scrolls forward. What I want it to do is change the cursor Forwards and Backwards. ...
Timbukto's user avatar
2 votes
0 answers
90 views

I need to use only a number type in the input, Angular 18. If I try to use <input matInput type="number"> in google chrome I get a violation [Violation] Added non-passive event ...
Anna Do's user avatar
  • 295
0 votes
0 answers
53 views

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 ...
Mike's user avatar
  • 308
0 votes
0 answers
67 views

I am trying to create a custom print preview dialog in VB.Net which allows for utilization of the mouse wheel. I am experiencing some really odd behavior. There are three main goals I want to ...
Luke Krell's user avatar
0 votes
3 answers
196 views

My Access (365) VBA application has been working perfectly for over 4 years now with about 8 users. Recently, a user reported that using the mouse wheel to scroll records on a custom form no longer ...
jedder's user avatar
  • 13
0 votes
0 answers
42 views

I am trying to code something where I can pan around and zoom a graphic, but I can't figure out how to get zoom quantity. I am working in a swing UI and I have successfully gotten scrolling to work ...
David T.'s user avatar
2 votes
0 answers
86 views

Issue Have some text selected/highlighted, then press the middle button on a mouse (/TrackPoint. I confirmed this issue occurs with both a mouse and a TrackPoint). By "middle" button, I ...
IsaacS's user avatar
  • 3,631
1 vote
0 answers
123 views

I know this has been asked before but there's no definitive answer on that question. MDN says: Even when the wheel event does trigger scrolling, the delta* values in the wheel event don't necessarily ...
Aayla Secura's user avatar
0 votes
0 answers
35 views

Newbie here! Easy Question for those with experienced eyes! Okay, first the code (Pt 1 HTML, Pt 2 CSS, & Pt 3 JavaScript) and then my question (pt 4) at the end! Pt 1 HTML code is: <!...
Scholah's user avatar
  • 19
0 votes
2 answers
129 views

I'd like to allow zooming on a canvas (excalidraw API) using only the mouse wheel like on google map , without pressing the ctrl key. Here are two things that I tried : useEffect(() => { const ...
Antonin Cuyala's user avatar
1 vote
0 answers
127 views

I am trying to detect mouseWheel event in my Dialog Box and control the speed of the mousewheel. Below is the code snippet for normal mouseWheel movement: static BOOL HandleMouseWheel(CWnd* pWnd, int ...
Monika's user avatar
  • 11
1 vote
0 answers
43 views

I can't get my mousewheel-bind event to work, this is my code: class Game(ctk.CTkToplevel): def __init__(self, master=None): global fråge_font global alt_font fråge_font = ...
Elis Sunden Cullberg's user avatar
0 votes
2 answers
211 views

I want to make the TDBGrid scrolling "smoother" to scroll the page instead of row by row (dataset cursor). I know that the navigation occurs on the dataset and not in the visual grid. Found ...
snowdev's user avatar
  • 31
0 votes
0 answers
30 views

I'm handling some scroll events, and I noticed that listening to onscroll event fires a lot of event, while the onwheel a lot less. I made a CodePen to see how many events are detected. In particular, ...
john's user avatar
  • 87
2 votes
2 answers
220 views

I try to send a mouseWheel event to a BrowserWindow webContent with electron with the following code: const wheelEvent = { type: 'mouseWheel', x: 100, // X-coordinate (optional) y: 100, // ...
Kantine's user avatar
  • 801
0 votes
1 answer
58 views

I want to add a handler for the MouseWheel to the ComboBox, but I don't know how. The reason is that I have scrolling problems with a ComboBox inside DataGrid inside ScrollViewer, see here, and I ...
Roland Kwee's user avatar
  • 5,302
0 votes
0 answers
122 views

The UI is working, meaning the data looks good, however, we have a scrolling problem. The data is in a series of ComboBoxes, inside of a DataGrid because we have many ComboBoxes, which is inside a ...
Roland Kwee's user avatar
  • 5,302
0 votes
0 answers
32 views

The scrollwheel does not work on a DataGrid inside a ScrollViewer, although the vertical scrollbar just works fine. I tested with this setup: <ScrollViewer> <StackPanel ...
Roland Kwee's user avatar
  • 5,302
1 vote
0 answers
39 views

The MDN wheel event docs it is specifies the following: Even when it does, the delta* values in the wheel event don't necessarily reflect the content's scrolling direction. Anyone know under which ...
L.Blondy's user avatar
  • 468
0 votes
2 answers
99 views

I want to prevent scrolling with the MouseWheel in a SplitterPanel with a scrollbar conditionally, but preserve the scrolling behaviour (as shown in the code below) how can I do this? I have this in ...
amuliar's user avatar
  • 1,461
0 votes
1 answer
804 views

I'm using the Unity InputSystem to detect mouse scrolling and use it's Callback to effect a Camera object zoom. However, I noticed that when I press (not scroll) on the middle mouse button (aka the ...
Jon Simon's user avatar
0 votes
2 answers
81 views

I can't seem to get the mousewheel to scroll on a multiple tab TKinter. It only scrolls the first Tab. Tried a few different things but cannot seem to work it out. Any help would be great :) Basiclly ...
Chris's user avatar
  • 3
0 votes
1 answer
492 views

I have the following code used for panning image. Panning works well, but wheel zoom not. When I start zooming anywhere above the image I want it to zoom from that cursor point outwards. Currently ...
Toniq's user avatar
  • 5,158
5 votes
1 answer
2k views

How can I Distinguish that which device triggers wheel event node.addEventListener('wheel', handleWheel) I want to do the following For mouse wheel: zoom in/out For pinch via trackpad: zoom in/out ...
A.A's user avatar
  • 4,339
0 votes
0 answers
86 views

I've inherited a VB.net WinForm. There's 2 equal length arrays that are generally 600+ long that output to 2 fixed location/size WinForm TextBoxes called RanTextBox and PosTextBox. I need the 2 ...
Mike's user avatar
  • 35
0 votes
1 answer
227 views

This may be hard to explain: Using OrbitControls in three.js and have enabled damping for smooth rotation with the mouse. It works partially. I click, I drag, the damping works fine, but as soon as I ...
liminalFrog's user avatar
0 votes
1 answer
55 views

I am trying to disable mousewheel on last slide and scroll down to pages when reached end of flexslider. Issue here is that I am not able to use mousewheel again when reached back to top of page. I am ...
Himanshu Jain's user avatar
1 vote
2 answers
214 views

I have made a slider, I'm trying to make a scroll-to-slide function with pure JS, But I am not sure how to set a delay function scroll in each slide(set a delay time each time the user scrolls). I don'...
Noufal Binu's user avatar
0 votes
2 answers
427 views

Actually the question is in the title. The WPF solution doesn't fit (or I haven't figured out how to adapt it), and I couldn't find anything else specific. The solution from here also could not be ...
Corhal's user avatar
  • 23
0 votes
0 answers
90 views

I have an embedded 3D model on my wordpress website which I created, now hosted online by creators3d. I want to alter the code somehow so you wouldn't be able to zoom in with the mouse or click&...
loudninja's user avatar
0 votes
1 answer
69 views

I have an implementation where I want to reload data while scrolling a JList after scrolling every 100 records. I have a large database, and it takes around 7 seconds to load the JList. Therefore, a ...
slow_learner's user avatar
-1 votes
1 answer
357 views

I developed a multiple image slider which is scrollable horizontally with mouse wheel. The problem is that when I scroll down with the mouse wheel on the page and reach the slider, although the slider ...
High T's user avatar
  • 61
0 votes
1 answer
627 views

In Qt6, many widgets (QComboBox, QSpinBox) will steal mouse wheel events that should be handled by their parent widget (like a QScrollArea), even when they don't have focus, and even when the ...
Brendan Abel's user avatar
1 vote
3 answers
715 views

How can I count mouse scroll using pure JS? Example: default value: 0 scroll down: ++1 scroll up: --1 I tried to do this using deltaY and a switch case let mouseWheel = 0; switch (deltaY) { case ...
Mikita Malashevich's user avatar
1 vote
1 answer
839 views

I need to create a scrollbar for Frame with mousewheel scorlling in tkinter library. I tried to set yview for Frame scrollbar = Scrollbar(master, command=frame.yview) but frame doesn't have yview ...
Иван Сакаев's user avatar
1 vote
1 answer
392 views

I'm using Neovim in the GNOME-terminal with the mouse= option set to disable all mouse features. This is the way I want it as I don't want the mouse moving my cursor in general. When I use the mouse ...
farnsy's user avatar
  • 2,478
2 votes
0 answers
265 views

private void richTextBox1_MouseWheel(object sender, MouseEventArgs e) { if(richTextBox1.Focused) { } } I am using Windows forms RichTextbox, and my question is how do I make ...
Marcel Majhenic's user avatar
0 votes
2 answers
127 views

I have an older OSD volume script that works wonderfully and is very customizable. Original found here... SOURCE: https://www.autohotkey.com/board/topic/94813-just-another-volume-osd/ My only issue is ...
V0RT3X's user avatar
  • 127
0 votes
0 answers
128 views

I am experiencing an issue with the SWT.MouseWheel event specifically in environments other than Eclipse Development Environment. The event handler for SWT.MouseWheel functions correctly within ...
hellboy's user avatar
  • 1,628
0 votes
0 answers
388 views

I am creating a Windows Form application that has a scroll bar which adjusts movement speed for a stage controller. I would like to give users the option to incrementally adjust the speed by pressing ...
yardboy27's user avatar
1 vote
0 answers
333 views

I would like to move forward and backward by scrolling mouse wheel. How can I adjust ursina.prefabs.first_person_controller.FirstPersonController so that it is controlled by mouse only... specifically,...
Sebo.PL's user avatar
  • 51
0 votes
1 answer
59 views

I am trying to manipulate some blue rectangles within a confined, much larger red rectangle. I have this working along with a zoom-in and zoom-out function The problem is I would like to display ...
Newbie Guest's user avatar
1 vote
1 answer
1k views

this is my first post on this community. I searched around for some content to help me with my question, and I've found some stuff that could potentially help me but I just wanted to know if its ...
seanie's user avatar
  • 11
1 vote
1 answer
514 views

I have a problem when I want to scrol , I attach the code from where I locate and change to the frame and how I currently try scrolling: . . . driver.find_element(By.XPATH,'//*[@id ="...
Raknaros's user avatar
0 votes
1 answer
133 views

I have a function that listenes to PointerWheelChanged events of my UIElement. I can retreive the MouseWheelDelta but this doesn't tell me if the mouse wheel was tilted or moved up/down. How can I get ...
RD4's user avatar
  • 165
0 votes
0 answers
180 views

I am working on a multi-image slider (i.e. several images appear next to each other at the same time and move together) that can be moved with the mouse wheel. I detect the direction of the mouse ...
Curious Programmer's user avatar

1
2 3 4 5
23