> For example, making it slightly tilted because it was easier to draw on old screens. No. Some older systems actually had straight pointers. The slightly tilted design is, I assume, a result of wanting to point to something while still being able to see what is to the immediate left of the pointer; useful for left-to-right text.
The best video on mouse cursors I've seen, by Posy: https://www.youtube.com/watch?v=YThelfB2fvg It doesn't exactly answer the question, but I -- someone who doesn't watch video and wants text, articles -- have watched this video twice over. It's worth it :)
Don't hijack my mouse pointer
51–60 of 63 posts
Re: Don't hijack my mouse pointer
#52My other pet peeve is sites that override text selection and add a popup or something. I select long text when I'm reading, I use it for focus and to keep track where I was if I need to switch to some other task in the middle. In general, excessive customization is a net negative if it breaks expectations.
Read more at: http://example.troll/lolyoufellforit.html
Re: Don't hijack my mouse pointer
#53My other pet peeve is sites that override text selection and add a popup or something. I select long text when I'm reading, I use it for focus and to keep track where I was if I need to switch to some other task in the middle. In general, excessive customization is a net negative if it breaks expectations.
Don't forget if you copy and paste it you end up with extra bullshit you didn't copy... Read more at: http://example.troll/lolyoufellforit.html
Re: Don't hijack my mouse pointer
#54Try using RISC OS on the Archimedes if you want some really obnoxious mouse pointer hijacking.
Re: Don't hijack my mouse pointer
#55I remember when the internet was wild, young and fun, and this was something people did all the time. If you’re building Salesforce or SAP or Microsoft Word you should avoid it, but if you’re making a fun and weird website you should go to town.
Yeah, it's not really that it's difficult and AI has made it easier. It's super easy, it's just anybody who knows what they're doing learned that it's bad decades ago. Vibe coding didn't make it easier to change the cursor, it made it easier for incompetent people to write software.
I'd love to see more people violating the design guidelines more often so that the internet can become a place worth visiting again, full of all the weird and wonderful ideas that people have locked up in their heads.
Re: Don't hijack my mouse pointer
#56Google's design blog has a particularly egregious version of this: https://design.google/ The mouse blob morphs into the background of any buttons you hover over, which is technically impressive but annoying in practice
Re: Don't hijack my mouse pointer
#57I can count on my left hand the number of acceptable times to change my cursor motion or shape. This is one: https://neal.fun/cursor-camp/
Your choice of wording made me wonder if you have a different number of fingers on left and right hands.
Re: Don't hijack my mouse pointer
#58Re: Don't hijack my mouse pointer
#59Re: Don't hijack my mouse pointer
#60from the other side of the coin, these are some of the ways it was/still is done.
example of browser element focus:
https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement...
allows you to throw the focus around,in the browser.
example of WinAPI SetFocus :
https://learn.microsoft.com/en-us/windows/win32/api/winuser/...
allows you to throw the focus around in the OS
JS example of mouse as a trigger event:
https://www.w3docs.com/learn-javascript/moving-the-mouse-mou...
JS example of manipulating the mouse:
https://shyama.com/automating-mouse-clicks-and-movements-wit...