The mouse-cursor tag has no wiki summary.
0
votes
0answers
11 views
Using several bmp paletteat the same time
I'm writing windows system to my OS (over VGA mode 13h), and I would like to use BMP files for all kind of
purposes (background, mouse cursor image, basic window image...).
The problem is that when I ...
0
votes
0answers
33 views
Can an app override the in-game settings for a mouse cursor?
I'm visually impaired and a pet-peeve of mine is loading up a video game and realizing I can't play because they chose a mouse cursor that while I'm sure is aesthetically pleasing, I can't see.
So I ...
0
votes
0answers
42 views
WPF : Waitcursor disappears while initializing application
Kind of a funny error I am spending a lot of time on with little to show for it.
In my WPF application in the main window in the Initialized event, I need to go to the database and pull application ...
0
votes
1answer
186 views
Change mouse cursor when dragging a floating QDockWidget
Is it possible to use a different mouse cursor when dragging a floating QDockWidget? Neither QWidget::setCursor nor QApplication::setOverrideCursor have any effect.
0
votes
1answer
168 views
WPF overwrite all default mouse cursors
is it possible to change all default cursors (defined by .NET) to changed into other cursors for a single skin style? I mean that if the mouse touch the current window all default cursors from the ...
1
vote
0answers
30 views
Can I determine if mouse button is already pressed to change cursor?
I am enabling drag and drop for one control in my SL 5 OOB app.
However, when the user is dragging a file, the cursor is the "copy file' cursor everywhere over my app.
Can I determine if, when the ...
0
votes
1answer
188 views
How to change the mouse cursor when mouse leaves a dynamically generated Rect in WPF?
I have a piece of code which does this:
"Creates two rectangles using Rect class in WPF and positions them on the left and bottom borders of a label to indicate whether the mouse pointer is placed ...
0
votes
1answer
87 views
move mouse with python on windows 7
How can I move the mouse cursor in python 2.7 on Windows 7?
def MoveMouse(x,y):
#move mouse cursor
Thanks in advance.
0
votes
0answers
188 views
user32.dll ShowSystemCursor not making cursor visible again
I am using user32.dll's undocumented ShowSystemCursor to hide windows system cursor. This works perfectly for what I want, hoever when I try to un-hide the cursor by passing in TRUE, the cursor will ...
1
vote
0answers
207 views
Show a cursor without using real mouse on Android 4.0+
A mouse cursor can appear on Android TV when mouse is connected. How can I let cursor show without using real mouse?
1
vote
0answers
502 views
Change cursor over HTML5 Canvas
I have a canvas in my site and an image rotation function. So I want to change the mouse cursor when I am trying to rotate the image. I tried this one for the beginning,
<canvas id="draw" ...
4
votes
1answer
479 views
How do I make custom CSS cursors retina compatible?
I was wondering how I could use a custom cursor in a webapp on a retina display. I know that normally, an image will be displayed at two times its normal size, due to the scale factor, and in making ...
0
votes
1answer
228 views
As3 Cursor rotating according to Mouse's x coordinate
Below you can find what i meant. I need my movie clip to rotate as i go different X positions.
http://www2.mediamind.com/creative_zone/movistar_agua_wallpaper_msn/index.html
Rotating according to X ...
3
votes
3answers
2k views
When I click on a canvas and drag my mouse, the cursor changes to a text-selection cursor. How can I prevent this?
Here's a fiddle: http://jsfiddle.net/MZ9Xm/
Note: The following occurs in Chrome 22.0.1221.1, but not in Firefox 14.0.1. [Ubuntu linux]
Move your mouse to the top canvas and press and hold the mouse ...
1
vote
2answers
293 views
Block mouse input in Java Swing
I have a testing FEST app which uses an AWT robot for simulating certain actions over a Swing interface. My problem is that it seems like moving the mouse pointer during the robot-test execution ...
0
votes
0answers
107 views
setting mouse cursor for hdividedbox divider in flex
I want to set the mouse cursor position for HdividedBox divider from where we could start dragging the divider. Now I have set its properties of DividerAffordance to 3 and horizontalGap to 3 as well. ...
0
votes
1answer
218 views
Wordpress cursor trails
I recently installed the mouse / cursor trials plugin for wordpress.
The plugin is working, however the mouse trail image dissapears behind the content of the site and only shows on the background
...
0
votes
1answer
357 views
getting the current mouse cursor image in c++ or c
In my application I want to get the current mouse cursor to display it in an applet. for that I have to write a C or C++ function that returns mouse cursor as a buffered image.
(here I choose C or ...
3
votes
3answers
431 views
Change browser cursor with Prototype.js
I'm having problem changing the cursor when the page is loaded; my code is:
Event.observe(window, 'load', function() {
document.body.style.cursor = 'wait';
$$('select').each(function(s) {
...
0
votes
1answer
147 views
How to avoid jumping position within select element when changing mouse cursor style (Chrome)?
I use the following in my web app to give feedback, that something is currently loading:
jQuery(document).ajaxStart(function(){
jQuery('body').css('cursor', 'wait');
});
...
0
votes
0answers
161 views
preserving a contenteditable div selection while having the caret in an text input
I have a contenteditable div but I want to allow the user to make a selection then click over into a text input field and enter a value without the highlighting of the contenteditable selection to be ...
2
votes
1answer
80 views
How to tell the current shape of my cursor?
When automating clicks and keystrokes, I often have to wait until a button finishes loading and becomes clickable. The only indicator of this is, to my knowledge, the shape of my cursor. In any ...
0
votes
0answers
145 views
Resize labels and list columns at the same time in VBA
I need to use labels and list to show data as a gridview. For some reasons, I cannot use any grid in my case without rewrite one. So if you see one of these problems is okay to solve, please provide ...
4
votes
4answers
1k views
Global override of mouse cursor with JavaScript
In my web application I try to implement some drag and drop functionality. I have a global JavaScript component which does the the basic stuff. This object is also responsible for changing the mouse ...
-1
votes
2answers
195 views
Find the mouse location over a bitmap control and display a rectangle in c#
I want to find the exact mouse location of the panel's display rectangle. I have a panel and assigned a bitmap image on it. I searched long time and found control over mouse location option but it ...
-1
votes
1answer
110 views
Creating custom cursor without ActionScript [closed]
Is there any way creating custom cursor in html that works on flash also? My html/css custom cursor doesnt work on flash.
1
vote
1answer
140 views
Use a Custom MouseIcon in VB6
I'm creating an application in VB6, and I want to use my own cursors. I set the correct properties for the form:
MousePointer: 99 - Custom
MouseIcon: "My Icon"
Where "My Icon" is the file for the ...
2
votes
2answers
376 views
On Idle Hide Mouse System-Wide, Show on Movement, from a C# Application
I'm trying to develop an application that, when running, will hide the mouse cursor wherever it happens to be on the screen after 5 seconds of inactivity, even if my app isn't in the foreground. Then, ...
3
votes
1answer
663 views
WinAPI get mouse cursor icon
I want to get the cursor icon in Windows.
I think language I use isn't very important here, so I will just write pseudo code with WinAPI functions I'm trying to use:
c = CURSORINFO.new(20, 1, 1, ...
2
votes
2answers
811 views
How to draw shapes interactively on top of a HTML5 canvas?
I need to draw a shape on top of a HTML5 canvas with the mouse cursor, like a square or a circle; and it should be resizable, then, when the user has finished with the drawing, the coordinates of the ...
2
votes
0answers
131 views
Connecting a remote touchpad to an Android system
I am thinking of connecting a remote touchpad to an android system (via infrared, bluetooth ...), for example for tablets or phones. But I don't know if it is possible to edit Android system in order ...
0
votes
0answers
245 views
Change WaitCursor with other Window scheme wait cursor in WPF
In my WPF application, I am using the Mouse.OverrideCursor to change the cursor to hourglass while performing time consuming tasks. This works fine, but I would like to change this default wait cursor ...
0
votes
1answer
147 views
How do I update Flash 10.2 hardware mouse cursor immediately, before mouse move?
As of Flash 10.2, Flash supports hardware accelerated mouse cursors:
http://www.adobe.com/devnet/flashplayer/articles/native-mouse-cursors.html
Yay!
Unfortunately, the mouse cursor doesn't update ...
1
vote
2answers
2k views
Hide cursor or have custom cursor in Windows 8 Metro
I want to know if there is a way to hide cursor in Windows 8 Metro mode. I found
this answer, but then I don't know how to obtain the
"unique resource id" for the second parameter of the cursor ...
0
votes
3answers
551 views
Why does my wait cursor not show sometimes when updating data in JTable?
I have a JTable that will reload sorted data from the database when the user clicks on a column header. MainView (JFrame) contains the GUI elements that will create a new SwingWorker and start it. The ...
0
votes
1answer
68 views
Determine cursor size of currently selected theme
I want to show a custom mouse cursor, in a size that matches the current settings (in the control panel) of the user.
Doing Cursor.Current.Size always returns 32x32 (as I guess they always are ...
0
votes
2answers
387 views
Snapping mouse cursor to a line in a Delphi custom control
I'm wondering how can I achieve horizontal (or vertical) snapping the mouse cursor to a line. For example, on the Facebook timeline feature, when you hover the mouse over the line down the center, it ...
2
votes
0answers
851 views
Hide Cursor Everywhere
I'm using C# and wish to hide the cursor globally. I can use Cursor.Hide() to hide the cursor while it is over my application, but I want to hide it completely, no matter where it is. Is this ...
0
votes
0answers
202 views
How do I set the class cursor to null?
Sorry about the long post! I have some explaining to do, I'm afraid... I have an application (in Unity3d, but for windows) that doesn't use WinForms, so I cannot use the Cursor class which is part of ...
3
votes
1answer
659 views
How to change cursor style for elements in editable div
I am trying to change the cursor to "pointer" for specific elements in content editable divs.
The below html code does not work as expected in Internet Explorer 8 and 9.
Any ideas how to set cursor ...
1
vote
3answers
2k views
CSS cursor:pointer in mac Safari doesn't work
I have placed cursor:pointer on a td but in Safari (on a mac) it only displays the default mouse cursor instead of changing to the little hand pointer which it does in every other browser.
Is anyone ...
-1
votes
1answer
146 views
How to call mouse functions on embed data?
I have some embed svg files on my website. I would like to use onmouseclick, onmouseout, and onmousemove functions on them, but they don't works. Is it possible to do it?
4
votes
1answer
101 views
How to check if a cursor style is supported
How can I check, with JavaScript, whether cursor:none is supported?
1
vote
3answers
586 views
How to get the cursor to change to the hand when hovering a <button> tag
When viewing my site, the cursor only changes to the gloved hand for <a> tags, not <button> tags. Is there a reason for this?
Here is my code (the button tags have an id of #more in ...
0
votes
2answers
231 views
why does changing the css cursor property stop my ajax post from working?
I have an unusual issue that doesn't really make sense to me and was hoping someone might be able to give me a clue here as to what is happening.
I successfully created a page that sends user data ...
0
votes
3answers
941 views
Don't change cursor over TextBox
I am trying to make a TextBox look like a TextBlock to the user (it is in a treeview that I want to allow renaming in). I was able to do this by applying a style to set the border and background to ...
1
vote
0answers
828 views
Java Swing getToolkit and custom cursor strange behavior
I am creating custom cursors in my Netbeans Java Swing app. For example, where 'cursorImage' is an image file on disk, I create my default cursor like so:
Cursor defaultCursor = ...
0
votes
1answer
307 views
Not displaying Mouse cursor
I am developing Mac desktop application, where i am capturing the screen using
CGImageRef screenShot = CGWindowListCreateImage(CGRectInfinite, kCGWindowListOptionAll, kCGNullWindowID, ...
3
votes
1answer
293 views
How to make Java Swing application show mouse cursor effects of Compiz Mouse Plugin (Ubuntu)
The Compiz Showmouse plugin has some nice effects for people with low vision. Unfortunately, those effects don't work in Java applications out of the box. How can I get my Java Swing application to ...
3
votes
1answer
1k views
wxPython change mouse cursor to notify a long running operation
I am building a Python program that searches things on a remote website.
Sometimes the operation takes many seconds and I believe that the user will not notice the status bar message "Search ...


