Mouse click point is not accurate

Has anyone ever had an issue with the mouse click coordinates not being accurate? For example, when I click on my canvas with the Rectangular Selection Tool, the point being clicked is actually 10 pixels below where the mouse is pointing! It causes much unnecessary headache...
Thanks for reading!

How about giving some relevant information (see link)?
How To Get Help Quickly!
If you work on CS4 you could rotate through the Screen Modes (hit F three times) to correct the issue, which occurs when opening or creating a file in Full Screen Mode.

Similar Messages

  • When-mouse-click trigger is not working

    Hi,
    My forms version is 10g.
    I've a black level and item level when-mouse-click trigger.
    There is some code inside that which is not being executed.
    To test, i simply printed a hello message inside the trigger's code.
    Even hello is not being displayed.
    Can anyone please help me in why this trigger is not working.
    Navnit

    You have some other issues going on if you don't see anything from a when-mouse-click trigger.
    First of all, are you spelling the trigger using a dash or underscore? WHEN-MOUSE-CLICK will run, but WHEN_MOUSE_CLICK will not.
    Have you set :SYSTEM.Message_Level to some value above zero in the form? If so, set it back to zero.
    On what object are you trying to click? Is this causing navigation? Navigation may cause validation to run, which may fail, which may prevent the navigation, which may prevent your when-mouse-click from running.
    And last, are you sure you are running the currently compiled fmx version of your form?
    When nothing works, you need to back up and start finding out what DOES work first.

  • Mouse clicks and path not exporting to flash

    Hey Guys, I've just started using Captivate v5 and all seems to work fine but when I export to Flash CS5, the mouse animates as linear and the click effect doesn't appear. If I preview from captivate the paths and clicks are there. If I click the mouse icon on the slides, they are all set to flash blue circle and straight pointer path is unchecked. The slides do not contain live film either, just screenshots. If I go into the movie in flash, the tween is there but no motion path. Any ideas?  Thanks

    Yeah, when I export to flash it opens the doc as AS3. Also, I noticed the default click effect does work, but when I change to any of the custom ones it gets ignored by flash.

  • Z8000 mouse click behaviour is not consistent

    The mouse is very elegant and practical for the type of business , I just have this weired behaviour on my Tecra Z50-A Windows 8.1 , the problem is , the mouse Left click is switching to right-click after few clicks, if I take my hand off the mouse and try again, the Left click comes back to normal and so on, after few clicks the click switches to Right-click until i take my fingers out of the mouse and put them back!
    The HP product solution finder didnt detect my mouse, I believe due to not supported product (then why it is in the product support page????)
    Any help or guidance here is much appreciated!
    thanks.

    @lolotimo 
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • Mouse Click on Polygon not Working

    I am trying to write a code for a simple game so that when I click in a certain area it responds in different ways. I have it set up using a polygon because the code I found used it, and it wouldn't work when I tried using a circle. The problem is that when I add more points to the polygon it starts acting up. What am I doing wrong? Or, if anyone knows how to use a circle instead of a polygon for this can they tell me?
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.Polygon;
    import java.awt.Toolkit;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class Mouse2 implements MouseListener
        Polygon poly1 = new Polygon();
        Polygon poly2 = new Polygon();
        Polygon poly3 = new Polygon();
        JPanel mainPanel = new JPanel();
        private boolean isVisible;
        private boolean dartboardClick;
        private boolean bullseyeClick;
        private boolean click;
        private int DBClick;
        private int BSClick;  
        private Mouse2() throws IOException
            poly1.addPoint(233,4); //Start creating mouseListener points. created clockwise
            poly1.addPoint(346,50);
            poly1.addPoint(392,158); //3 o'clock
            poly1.addPoint(358,257);
            poly1.addPoint(238,316); //6 o'clock
            poly1.addPoint(121,264);
            poly1.addPoint(81,155); //9 o'clock
            poly1.addPoint(127,50);
            poly2.addPoint(80,60);
            poly2.addPoint(160,120);
            poly2.addPoint(80,120);
            poly2.addPoint(160,60);
           poly3.addPoint(0,0);
           poly3.addPoint(0,320);
           poly3.addPoint(480, 320);
           poly3.addPoint(480, 0);
        public void mousePressed(MouseEvent e) {}
        public void mouseEntered(MouseEvent e) {}
        public void mouseReleased(MouseEvent e) {}
        public void mouseExited(MouseEvent e) {}
        public void mouseClicked(MouseEvent e)
            if(poly1.contains(e.getX(), e.getY()))
                dartboardClick = true;
            if(poly2.contains(e.getX(), e.getY()))
                bullseyeClick = true;
            if(poly3.contains(e.getX(), e.getY()))
                click = true;
            while(dartboardClick && !bullseyeClick)
                System.out.println("25 points.");
                dartboardClick = false;
                click = false;
            while(dartboardClick && bullseyeClick)
                System.out.println("100 points!");
                dartboardClick = false;
                bullseyeClick = false;
                click = false;
             while(click && !dartboardClick)
                System.out.println("Miss.");
                click = false;
            if(poly.contains(e.getX(), e.getY())|| poly2.contains(e.getX(), e.getY()))
                System.out.println("clicking on polygon");
            }else
                System.out.println("false");
        public static void main(String[] DontTouchTheCurlyBracketsJustPressOk) throws IOException
            JFrame frame = new JFrame();
            frame.addMouseListener(null);
            frame.setSize(new Dimension(480, 320));
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            Drawing d = new Drawing();
            d.addMouseListener(new Mouse2());
            frame.getContentPane().add(d);
            frame.setVisible(true);
    class Drawing extends JPanel
        final BufferedImage bi;
         public Drawing() throws IOException {
             bi = ImageIO.read(new File("H:\\Dart\\DartsImageFinal.bmp")); //Set the drive; needs 2 backslashes
             //bi = ImageIO.read(new File("/Users/adno4/Desktop/DartsImageFinal.bmp")); //Set the drive; needs 2 backslashes
         public void paintComponent(Graphics g) {
              g.drawImage(bi,getWidth()-bi.getWidth(),getHeight()-bi.getHeight(),null);
         public static void main(String[] args) {
             EventQueue.invokeLater(new Runnable() {
                 public void run() {
                     try {
                         JFrame f = new JFrame();
                         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                         Drawing t7 = new Drawing();
                         f.setContentPane(t7);
                         f.setSize(480,320); //Might need to resize
                         f.setVisible(true);
                     } catch (IOException ioe) {
                         ioe.printStackTrace();
    }Edited by: adno4 on May 24, 2010 5:43 AM

    frame.addMouseListener(null);Change "null" to "this".
    Your object implements MouseListener, but you tell it you have no listeners when you add a null listener, the code you wrote does nothing in that case.

  • Firefox 9.0.1 with Flash player not catch keyboard event with mouse click.

    In a flash application, I need select mutil items using shite key and mouse click, it is not working. looks like firefox didn't pass the keyboard even alone with the click event. This happen on Window 7, IE and Chrome have no problem. only FF

    i have the same problem everytime i open a website with flashcontent firefox freezes and i have to kill the flash process to unfreeze the browser the only way i can see a youtube video is in html5 mode.
    Hardware
    Acer aspire 4553
    Turion X2 p520
    3gb of ddr3 ram
    Ati Mobility Radeon 4250

  • Bing Maps on IE 11 browser, The mouse click event is only working when we have compatibility mode on.

    I have tried out the code in this article in ASP.Net web forms with c#  and javascript.
    I am using Ajax to call the C# from Javascript and load the data from database.
    I have used following article to show the pushpins and there infoboxes.
    http://blogs.msdn.com/b/rbrundritt/archive/2013/11/08/multiple-pushpins-and-infoboxes-in-bing-maps-v7.aspx?CommentPosted=true#commentmessage
    My code works great on IE 11 , when I have compatibility mode on,
    but when compatibility mode is off, the mouse click event is not being received by the Javascript function.
    Is this expected behavior of bing maps, Are there any workarounds for this problem?
    Thanks
    Nate

    Hi Ricky, I have tried using Chrome and I see the same issue. The mouse events are not being captured. 
    Here is my code
    <%@ Page Title="" Language="C#" MasterPageFile="~/Maps.Master" AutoEventWireup="true" CodeBehind="BingMaps.aspx.cs" Inherits="MyMaps.secure.BingMaps" %>
    <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolderBody" runat="server" >
    <asp:ScriptManager ID="ScriptManager" runat="server"
    EnablePageMethods="true" />
    <div id="MapHolder" style="; width:1000px; height:800px; " />
    <asp:Literal ID="Literal1" runat="server">
    </asp:Literal>
    </asp:Content>
    <asp:Content ID="Content3" ContentPlaceHolderID="ScriptSection" runat="server">
    <script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0">
    </script>
    <script type="text/javascript" >
    var map = null, infobox, dataLayer;
    $(document).ready(function () {
    GetMap();
    function GetMap() {
    // Initialize the map
    map = new Microsoft.Maps.Map(document.getElementById("MapHolder"),
    { credentials: "lincensekey", zoom: 2 });
    dataLayer = new Microsoft.Maps.EntityCollection();
    map.entities.push(dataLayer);
    var infoboxLayer = new Microsoft.Maps.EntityCollection();
    map.entities.push(infoboxLayer);
    infobox = new Microsoft.Maps.Infobox(new Microsoft.Maps.Location(0, 0), { visible: false, offset: new Microsoft.Maps.Point(0, 20) });
    infoboxLayer.push(infobox);
    PageMethods.GetLocations(RequestCompletedCallback, RequestFailedCallback);
    function AddData(MapPoints) {
    for (var i = 0, len = MapPoints.length; i < len; ++i)
    var pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location(parseFloat(MapPoints[i].lat),parseFloat(MapPoints[i].lon))
    icon: MapPoints[i].group,
    height: 50, width: 60, text: MapPoints[i].city
    pushpin.Title = MapPoints[i].name;
    pushpin.description = MapPoints[i].desc;
    Microsoft.Maps.Events.addHandler(pushpin, 'click', displayInfobox);
    dataLayer.push(pushpin);
    function displayInfobox(e) {
    if (e.targetType == 'pushpin') {
    infobox.setLocation(e.target.getLocation());
    infobox.setOptions({ visible: true, title: e.target.Title, description: e.target.description });
    function RequestCompletedCallback(result) {
    result = eval(result);
    AddData(result);
    function RequestFailedCallback(error) {
    var stackTrace = error.get_stackTrace();
    var message = error.get_message();
    var statusCode = error.get_statusCode();
    var exceptionType = error.get_exceptionType();
    var timedout = error.get_timedOut();
    alert("Stack Trace: " + stackTrace + "<br/>" +
    "Service Error: " + message + "<br/>" +
    "Status Code: " + statusCode + "<br/>" +
    "Exception Type: " + exceptionType + "<br/>" +
    "Timedout: " + timedout);

  • Mouse Clicks in Captivate

    I have a number of captivate animations that have mouse
    clicks. However even though I have set and checked all mouse clicks
    the 'click' audio does not consistently work. Is there a trick to
    setting the audio click.
    I am using Captivate V2.0.0 build 1177

    Hi Mike Wald and welcome to our community
    Sorry, but I'm a bit confused by your post. Which is true?
    Are you saying that a mouse click is heard and you don't want
    it to be? If so, take a look at the links below:
    Link One
    Link
    Two
    Or is it that you
    want to hear mouse clicks and are not? In this case, other
    than checking each mouse movement, I'm a bit stumped.
    Cheers... Rick

  • Why does the Back button require two mouse clicks?

    I've just upgraded to ver. 9 and now the Back button requires two mous clicks/

    I might not have used the word "Normal".  "Typical" maybe.  I suppose "Normal" is acceptable in the context of "SNAFU".
    Wait until you make an edit on one of your own posts to fix a stupid typo, then later look to find the typo back and you can no longer edit it.  And what's up with that messed-up Javascript that shows up at the top of some quoted messages?
    These forums are barely usable, but a bright spot is the color-managed photo attachment capability (i.e., you can upload an image with a non-sRGB color profile and the server will convert it).  I suppose if anything Adobe could have been expected to get that part right.
    -Noel

  • Pressing cntrl+left mouse click doesn't select multiple rows.

    Hi,
    I've got this problem after i migrated my form from 6i to 10g.
    In 6i version, cntrl+left mouse click used to work in order to select multiple rows on the screen. But, it's not working in 10g.
    Instead, Shit + left mouse click is working to select multiple rows in 10g.
    Please can someone help me out with this. I want cntrl + left mouse click to work.
    Any help will be appreciated.
    Regards
    Navnit

    Hi Pradeep,
    Thanks for your reply.
    Do you mean fmrweb.res file?
    This is the content of my res file
    9 : 0 : "Tab" : 1 : "Next Field"
    9 : 1 : "Shift+Tab" : 2 : "Previous Field"
    116 : 0 : "F5" : 3 : "Clear Field"
    38 : 0 : "Up" : 6 : "Up"
    40 : 0 : "Down" : 7 : "Down"
    33 : 0 : "PageUp" : 12 : "Scroll Up"
    34 : 0 : "PageDown" : 13 : "Scroll Down"
    69 : 2 : "Ctrl+E" : 22 : "Edit"
    10 : 0 : "Return" : 27 : "Return"
    76 : 2 : "Ctrl+L" : 29 : "List of Values"
    115 : 0 : "F4" : 32 : "Exit"
    75 : 2 : "Ctrl+K" : 35 : "Show Keys"
    83 : 2 : "Ctrl+S" : 36 : "Commit"
    118 : 1 : "Shift+F7" : 61 : "Next Primary Key"
    117 : 0 : "F6" : 62 : "Clear Record"
    38 : 2 : "Ctrl+Up" : 63 : "Delete Record"
    117 : 1 : "Shift+F6" : 64 : "Duplicate Record"
    40 : 2 : "Ctrl+Down" : 65 : "Insert Record"
    119 : 1 : "Shift+F8" : 66 : "Next Set of Records"
    1005 : 0 : "Down" : 67 : "Next Record"
    1004 : 0 : "Up" : 68 : "Previous Record"
    118 : 0 : "F7" : 69 : "Clear Block"
    66 : 2 : "Ctrl+B" : 70 : "Block Menu"
    34 : 1 : "Shift+PageDown" : 71 : "Next Block"
    33 : 1 : "Shift+PageUp" : 72 : "Previous Block"
    116 : 1 : "Shift+F5" : 73 : "Duplicate Field"
    119 : 0 : "F8" : 74 : "Clear Form"
    122 : 0 : "F11" : 76 : "Enter Query"
    122 : 2 : "Ctrl+F11" : 77 : "Execute Query"
    69 : 3 : "Shift+Ctrl+E" : 78 : "Display Error"
    80 : 2 : "Ctrl+P" : 79 : "Print"
    123 : 0 : "F12" : 80 : "Count Query"
    85 : 2 : "Ctrl+U" : 81 : "Update Record"
    121 : 3 : "Shift+Ctrl+F10" : 82 : "Function 0"
    112 : 3 : "Shift+Ctrl+F1" : 83 : "Function 1"
    113 : 3 : "Shift+Ctrl+F2" : 84 : "Function 2"
    114 : 3 : "Shift+Ctrl+F3" : 85 : "Function 3"
    115 : 3 : "Shift+Ctrl+F4" : 86 : "Function 4"
    116 : 3 : "Shift+Ctrl+F5" : 87 : "Function 5"
    117 : 3 : "Shift+Ctrl+F6" : 88 : "Function 6"
    118 : 3 : "Shift+Ctrl+F7" : 89 : "Function 7"
    119 : 3 : "Shift+Ctrl+F8" : 90 : "Function 8"
    120 : 3 : "Shift+Ctrl+F9" : 91 : "Function 9"
    113 : 0 : "F2" : 95 : "List Tab Pages"
    72 : 2 : "Ctrl+H" : 30 : "Help"
    112 : 0 : "F1" : 30 : "Help"
    I don't know what value should i enter for cntrl + left mouse click ?
    Even for shift + left mouse click, row is not there but it's working.
    Please tell if you know what row should i enter for cntrl + left mouse click in order for it to select mutliple rows?
    Regards
    Navnit

  • No more mouse click sounds for buttons on Captivate 5

    I have been working on a project that uses buttons and click boxes.  Previously the mouse click played when the button was selected, but now there is no mouse click sound when selecting the button.  When closing the application I see a message that pops up saying "Discovering Unreachable Audio".
    I also tried to create a new project with buttons and the mouse click still does not play.
    I double checked in the properties for the button and the box for "Disable Click Sound" is NOT checked, so I know that this is not the problem.
    I am using Windows XP SP3.
    Any advice on how to correct this is greatly appreciated!
    Thanks

    Did you ever find a solution to this?  I am having the same trouble.  The mouse click will not play despite the fact it is selected.  Some mouse clicks will play so I don't know what the issue is.  Also if I change it to a custom mouse click it the sound will play.

  • OSA script help in ARD...mouse click

    Hello,
    Lets say I want to use ARD (3.6.1) from my macbook air to click on a specific part of the screen on a 10.7.5 mac air. 
    I have found this osascript but it does not work. Lets say I want it to click at {330,220} in Pages.
    osascript -e 'tell application "System Events" to tell process "Directory Access" to click at {x,y}'
    I have tried changing "Directory Access" to the program I am running, "Pages" but that does not work. I am also running command as root.
    Any suggestions?

    If you google around, you can probable find allot of unix scripts out there to do most of what you can do in Directory Access. (enable root, enable/bind to a directory service, map attributes, extra) and they would be faster and more reliable then trying to perform that action at the finder level with emulate mouse clicks.
    FYI Not all process support the to click at funtion of applescript.
    Another option some times is to script actions by the GUI elements which isn't relient on the window being in exactly the right spot to work. BUT again it's easier to do allot of this stuff at the unix/command base level.
    What are you trying to do with Directory Access?
    If you want to use applescript, have you tried some thing you know should work like:
    activate application "AppleScript Editor"
    tell application "System Events" to tell process "AppleScript Editor" to click at {0, 0}

  • T410s clicks and taps not registering

    Ever so often mouse clicks start being ignored. Instead of registering the click the active window appears to loose focus. Sometimes I'll still be able to use the trackpad buttons or tap the touchscreen. Other times none of these will work. Sometimes switching windows (Alt+Tab) or right-clicking appears to fix the problem, or it fixes itself after a while. Other times I'm stuck using the keyboard until I reboot.
    This is a problem that started just a few days ago. Can't correlate it with a specific update. I reverted the UltraNav driver (for Windows 64-bit) from 15.0.24.0 to 15.0.18.0, but that didn't help. I also don't see the SynTPEnh.exe process hanging or using CPU as other people have reported recently.
    Anyone else experienced something similar or have any suggestions?

    Two things:
    From testing, I've notice that some time the mouse click events did not fire, especially in fast rate clicks (say, in games like bejeweled).
    Switching from "mouse click" to "mouse down" events seems to work better.
    You can always separate the graphics from the "hit" area of the button. you can:
    a. use an almost transparent movieclip (alpha of 1/100) that is placed above the graphics (and listen to its event, not the graphics).
    b. use a simple button and place a large rectangle in the "hit" state of the button.
    btw, using method 2b, you can have one graphic file for all the UI, as it's just a background for the real buttons.

  • I just created a new profile/user on my MacBook Pro. My pointer/mouse. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. Mouse moves but will not click. Already tried restarting and the pram zap.

    I just created a new profile/user on my MacBook Pro. My pointer/mouse on my trackpad. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. The Mouse moves but will not click. Already tried restarting and the pram zap. The problem starts when I log out of my main profile. I get to the login screen and my laptop stops responding to clicks. When I manage to make my way back to my main profile the mouse works perfectly.  Should I just delete the new profile and try again?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • Mouse point will not change to a hand to select - can goto task mgr to free & then get one click & then it freezes again??

    It is still happening even in these dialogue boxes. I can get one maybe two clicks of the mouse (pointer changes from arrow to hand) and then it will freeze again and I have to goto another program make a selection there or perform a mouse click and then go back to firefox. then it happens all over again.
    Running Windows XP SP3

    Also i have reinstalled the reader9 two  times and tried with reader8 also but in both the cases same problem.
    it would be gr8 help if someone can help.

Maybe you are looking for