Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
195 views

DrawFocusRect with given aspect ratio in Delphi

I want to be able to draw a FocusRect on an image, which keeps the aspect ratio of the image. My problem is, that the FocusRect only depends on the y coordinates of the mouse. I just don't know how to ...
3
votes
1answer
1k views

Get mouse position in scrollable div

Yet another question that has been pecking away at me the last few days. As you may have seen from my other questions I am creating some mind map software. So (extremely simplified) I have a two divs. ...
3
votes
2answers
2k views

How do I get the current mouse coordinates in WPF?

How to get current mouse coordination? I know only Mouse.GetPosition() which get mousePosition of element, but I want to get the coordination without using element. Thank you
3
votes
1answer
606 views

Yui Mouse Coordinates over Element

I'm trying to determine if the mouse is over an element preferably with YUI if there is a method for that already. Basically something like function bool IsMouseOver(Element);
3
votes
3answers
992 views

Absolute Mouse Positions on Processing

This is a copy paste of a post i made on the processing forum (where i haven't got an answer so far) thought i might as well try here. Processing is a very cool way to draw stuff, specially for the ...
2
votes
2answers
476 views

Javascript rotate image with mouse coordinates

Im using a parallax effect that moves a ball according to the users mouse position (http://webdev.stephband.info/jparallax/index.html). I am trying to figure out a way that the ball will also rotate. ...
2
votes
1answer
2k views

How can I get my own cursor coordinates in Firefox?

I'm currently designing a website and just realized it would help me a lot if I would know my own cursor coordinates. I mostly use Firefox for previewing the new page. So an add-on for Firefox would ...
1
vote
4answers
459 views

OpenGL: How to calculate the angle where my mouse is pointing at in the 3d space?

I only need to know which angle (x,y,z vector) my cursor is pointing at. So i can shoot any particle in the direction i am pointing at. I cant use depth testing, so the typical picking methods are ...
0
votes
1answer
31 views

Getting system mouse coordinates from an air application running on system tray ( mouse tracker )

I want to get the mouse position from an adobe air application that will run on system tray (visible = false). I tried lots of ways but couldn't find an answer. Is it allowed to get this data with ...
0
votes
1answer
44 views

How store coordinates of boundaries of each zone region in a London tube map .GIF file?

I am trying to: Generate a KML file that stores the coordinates of each boundary zone region of London tube map. Store x,y coordinates as key-pair values to store points of each station on each ...
0
votes
1answer
171 views

Getting the Mouse window coordinates in OpenTK (C#~.NET)

I'm creating a GUI that has 1 to many OpenGL view forms. Now the basics are working, I have a list of Viewer Forms and each encapsulates an OpenTK.GLControl member in its designer class. I need to ...
0
votes
0answers
43 views

Convert Viewport point to container reference point in WPF

I have plotted controls on ViewPort at specified locations. And the ViewPort is placed on Canvas. On click on the plotted control, I want to get the coordinate point with reference to the ViewPort ...
0
votes
0answers
178 views

Javascript mouse coordinates in a div with auto padding [closed]

I'm trying to get something like a pong paddle to work in JavaScript. Basically, I have a "content" div containing all other divs that are used in the game. The content div has auto padding, so it is ...
0
votes
3answers
399 views

Getting mouse co-ordinates using jQuery

I am building a breakout game using jQuery and the <canvas> element. To control the paddle, it will follow the mouse. So I need to get the mouse co-ordinates in my drawPaddle() method. Looking ...
0
votes
1answer
248 views

screen coordinates with a horizontal scroll bar

I need to place icons on a map image. Since the map image is bigger than my screen resolution 1280 x 1024, a horizontal scroll bar is shown. I use Location x and y to place icons, but the problem ...
0
votes
1answer
68 views

I need to know the x and y coordinates of the button click when a WM_COMMAND is activated

I have a button created with //Create Compass HWND hWndCompass = CreateWindowEx(NULL, "BUTTON", "Compass", WS_TABSTOP|WS_VISIBLE|WS_CHILD|BS_DEFPUSHBUTTON, 600, 10, 50, 24, hWnd, ...
0
votes
3answers
2k views

Rotating a picture using mouse position in C#

Basically what I'm trying to do is have a picture rotate using mouse events. For example, while you hold down the left mouse button, the picture rotates when you move the mouse up and down. I found ...