805 questions
0 votes
1 answer
80 views
I'm trying to have the user's cursor in an input statement at a specific point (after the ": |") so it types at that point
Here is my code: print("Make a 20-digit code with numbers 0-9: |___|", end="\r", flush=True) addDigits = input("Make a 20-digit code with numbers 0-9: |") More ...
1 vote
1 answer
142 views
How do I change my mouse icon when I hover over a TSkLabel component on Delphi in FireMonkey
I have a follow up question to one of my previous questions. I have switched over to using Skia4Delphi in my applications, but the properties are very different. I was using TLabel and setting the ...
0 votes
1 answer
180 views
How can I completely hide the mouse cursor when hovering on a component in Delphi? [closed]
I always kind of thought/assumed there would be a crNone option under the Cursor property on components. But when browsing through the Cursor list in the object inspector, I don't see a crNone option. ...
2 votes
1 answer
112 views
How do I change my mouse icon when I hover over a word on Delphi in FireMonkey?
How do I change the mouse icon when it hovers over a word and changes to another icon? I have a word that is in a TLabel component. When I hover my mouse over it then I want the mouse icon to change ...
1 vote
1 answer
53 views
Replace default mouse icon maps
I am able to replace the mouse cursor in gmail following the solution in stack overflow. This same solution works in maps like google maps. However, it seems not to work in maps that have the cursor ...
0 votes
2 answers
96 views
MouseWheel Doesn't Scroll Back and Forth
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. ...
1 vote
1 answer
97 views
Winapi: Modify DPI scaled standard cursor bitmap
A C++ Windows application desires to annotate the cursor bitmap with a small colored icon which conveys context dependent information, i.e. while hovering specific items. User preferences are to be ...
1 vote
2 answers
168 views
Multiple image trails following cursor with Javascript
I'm trying to create multiple image trails for a grid. Each trail follow the cursor, I found an example on Codepen to illustrate the effect I'm looking for. The example is made with GSAP, but for this ...
7 votes
1 answer
825 views
'mouse_tracker.dart' Assertion Failed - '(event is PointerAddedEvent) == (lastEvent is PointerRemovedEvent)'
When mirroring a device using scrpy, anytime I scroll or pass the mouse cursor through widgets that have hover animations, it throws these exceptions, I've a found an open issue on Flutter github but ...
0 votes
1 answer
67 views
Multiple cursors follow mouse in Javascript
I have a grid with multiple items. Each item has its own custom cursor with the div .grid__item-cursor. What I'm trying to achieve is when hovering an item, its cursor follows the mouse with a smooth ...
1 vote
0 answers
64 views
How to change mouse scheme in C++ (windows)? [duplicate]
I want to change the mouse scheme from my C++ code on Windows. For example, I want to change from "Inverse (large)" to "Standard (large)". Should I just change the value of the ...
1 vote
0 answers
152 views
When running a Flutter app designed for iOS, is there a way to get the mouse cursor to change when running the app on macOS via Mac Designed for IPad?
I have a Flutter app that runs on iOS and also want to run that same app on macOS via the Mac Designed for iPad target. While I am able to run the app via Xcode using the Mac Designed for iPad target, ...
4 votes
1 answer
94 views
Why `cursor: pointer` and `:hover` property is not being applied?
HTML and CSS Code: *{ margin: 0; padding: 0; font-family: "Spectral", "serif"; } .main_box{ /* width: 100vh; */ background-image: url(photo.jpg); background-size: cover; ...
0 votes
1 answer
78 views
How can I make NSCursor hide in full screen macOS window?
import SwiftUI import Combine struct ContentView: View { @State private var activityTimer: Cancellable? @State private var activityCountDownInterval: TimeInterval = 3 @State private var ...
0 votes
1 answer
42 views
Unity - Make Cursor go begind target Sprite
I want to make my cursor go behind a sprite like this: Is there a way to change the cursor layer renderer in the code / during the game. I want to do it when the character is clicked on. Right now, I ...