Component mouse was clicked in

Hi all,
I have an array of JTextFields, which represent setup names in my program.
I override isManagingFocus so that I can determine which one has focus if the user tabs thru the JTextFields. This is working.
I need to determine when the user mouse clicks into the textfield which textfield the mouse clicked in because in my program that will be the current setup name.
TIA,
Pat

I had an error in my code was the problem.
Here is how I implemented it.
   setupNameTextField[setupArrayCount].addFocusListener(new FocusAdapter(){
      public void focusGained (FocusEvent e) {
         System.out.println("setupNameTextField["+setupArrayCount+"] gained focus");
         findSetupNameTextFieldThatOwnsFocus();
   public void findSetupNameTextFieldThatOwnsFocus() {
      setupNameTextFieldOwningFocus =0;
      int count =0;
      for (count = 0;count<setupArrayCount;count++) {
         if (setupNameTextField[count].hasFocus()) {
            setupNameTextFieldOwningFocus = count;
            System.out.println("current setup count = "+setupNameTextFieldOwningFocus);
            break;

Similar Messages

  • Is there an easy way to see if there a mouse was clicked on an image?

    Is there an easy way to see if there a mouse was clicked on an image? I don't want to do it using math, as I will have anywhere from 1 to 1000 images. Thanks.
    Virum

    I also went through the same process and used Hashtable at last
    Hashtable ht=new Hashtable();
    ht.add("1",new Position(number,x,y,image))
    ht.add("2",new Position(number,x,y,image))
    u need have class Position which has constructor
    Position(int number,int x,int y,Image img)
    number : 1,2,.....
    image : img1,img2......
    x,y position
    hope u got it

  • Load Movieclip where Mouse was clicked

    Hello,
    I got a request to have a "ripple" animation play where the
    mouse was clicked (like the application is in a puddle) and i am
    using AS2 in CS3 and i am not able to get this to work (and really
    surprised i havent ever come across this before). I would like to
    just load an instance of my "ripple_mc" out of the library where
    and when the mouse is clicked.
    i have searched for some tutorials but cant seem to find what
    i am looking for, if anyone can point me to a tutorial or throw
    some code down for me i would really appreciate it
    thanks in advance!

    i put an invisible button in the background and an empty
    movieclip with the instance name "loader_mc" on the stage with the
    following actions on the button:
    on(release){
    loader_mc._x=_xmouse;
    loader_mc._y=_ymouse;
    loader_mc.attachMovie("ripple", "new", 200);
    i would like to eliminate the invisible button and have
    multiple insances of "ripple" able to happen at once...
    the above fla can be downloaded here:
    http://www.michaelsaathoff.com/sample.fla
    thanks!

  • Determing which component from a custom TreeCellRenderer was clicked on

    hi,
    i've been experimenting with finding which component has been clicked on in a JTree which has a custom tree cell renderer. I've got a piece of code that appears to work, but am unsure if this is the proper way to go about doing this, and whether it might fail under some circumstances.
    any help appreciated,
    asjf
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class JTreeTest1 {
       public static void main(String[] arg) throws Exception {
          final JTree tree = new JTree();
          final TreeCellRenderer renderer = new MyRenderer();
          tree.setCellRenderer(renderer);
          tree.addMouseListener(new MouseAdapter() {
             public void mouseClicked(MouseEvent e) {
                int x = e.getX(), y = e.getY();
                int row = tree.getRowForLocation(x,y);
                TreePath path = tree.getPathForLocation(x,y);
                if(path!=null) {
                   Object o = path.getLastPathComponent();
                   Rectangle r = tree.getPathBounds(path);
                   // how to detect what component has been clicked on?
                   // simplification: pretend all boolean state has no effect on renderer (which is true for the renderer below)
                   Component renderedComponent = renderer.getTreeCellRendererComponent(tree, o, false, false, false, row, false);
                   renderedComponent.setBounds(r);
                   int _x = (int) ((double)e.getX() - r.getX());
                   int _y = (int) ((double)e.getY() - r.getY());
                   Component clickedUpon = SwingUtilities.getDeepestComponentAt(renderedComponent, _x, _y);
                   if(clickedUpon instanceof JLabel) {
                      JLabel jl = (JLabel) clickedUpon;
                      System.out.println(jl.getText());
          JFrame frame = new JFrame("JTreeTest1");
          frame.getContentPane().add(tree);
          frame.pack();
          frame.setVisible(true);
    class MyRenderer extends JPanel implements TreeCellRenderer {
       JLabel custom;
       public MyRenderer() {
          super(); // flow layout
          add(new JLabel("Hello"));
          add(custom = new JLabel());
          custom.setOpaque(true);
          custom.setBackground(UIManager.getColor("Tree.background"));
          custom.setForeground(UIManager.getColor("Tree.foreground"));
          add(new JLabel("World"));
       public Component getTreeCellRendererComponent(JTree tree, Object value, boolean isSelected, boolean expanded,
                                                     boolean leaf, int row, boolean hasFocus)
          custom.setText("("+value.toString()+")");
          return this;
    }

    My only advice would be to remember that rendered components are not actually added to the tree, so they are not a child of the tree... they actually cannot be clicked on. The rendered components are quickly used just to paint and specific image and then discarded (which is why you don't typically want to create new ones each time). When you click on the tree, there is no "rendered component" there, just an image that was painted.
    Hope this helps
    Josh Castagno
    http://www.jdc-software.com

  • Identify What was Clicked

    I have a click event listener on a group component. I'm trying to figure out if a label was clicked or anywhere else in the group was clicked. The event.currentTarget is just returning the group in all instances.
    I originally had a click event set on the label and a click event on the group, but I end up with two events. Since the click event on the label is designed to remove the Group from display, remove event listeners, etc., the second click even then throws an error, because the Group no longer exists.
    The code below should give you a good idea as to what I am trying to do. Currently the groupClick() function will throw an error. I typed in in this way to explain what I am trying to accomplish.
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Specify the root tag and namespace. -->
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
    height="200" width="200" click="groupClick(event)">
    <fx:Script>
      <![CDATA[
       import flash.events.MouseEvent;
       private function groupClick(event:MouseEvent):void {
                   // Do this if clicking anywhere that is NOT on the closeX label
                   this.parentDocument.openGroupList.selectedIndex = this.parentDocument.openGroupListAC.getItemIndex(this as Group);
                   this.parentDocument.openGroupListClick();
                   // Do this if clicking on the closeX label
                   this.removeEventListener(MouseEvent.MOUSE_MOVE, this.parentDocument.mouseMoveHandler);
                   this.parentDocument.openGroupListAC.removeItemAt(this.parentDocument.openGroupListAC.getI temIndex(this as Group));  
       ]]>
      </fx:Script>
    <s:Label top="7" right="7" text="X" id="closeX" fontSize="14" color="0xffffff" buttonMode="true" useHandCursor="true"/>
    </s:Group>
    I could use:
    if (String(event.target).indexOf('closeX') > 0) {
                   this.removeEventListener(MouseEvent.MOUSE_MOVE, this.parentDocument.mouseMoveHandler);
                   this.parentDocument.openGroupListAC.removeItemAt(this.parentDocument.openGroupListAC.getI temIndex(this as Group));
    else { ....
    That works, but string comparisons seem rather inefficient. If someone has a better way, I'd like to know!!
    Message was edited by: JFillman

    Event.currentTarget is the object you called addEventListener on.
    Event.target is the original dispatcher of the event.  For bubbling events, it can be some child object, but some objects like Label may not be mouse targets.
    -Alex

  • Why keyboard and mouse right click not working in Solaris and Linux?

    Hi all,
    I have two problems:
    1) I am working on AWT/Swing application and its working fine in window enviornment,but while running on solaris and linux mouse right-click option window not poping up.
    2) Ctrl+c,Ctrl+v,Home and End keyboard key are not working in solaris and linux OS for same application.
    Pls provide me some solution for these problem.
    -Dinesh

    Hi Nik,
    Thanks for reply. I found some solution for the above problem.
    For mouse right click there was problem in my source code.I have not implemented the mousePressed() method
    In case of keyboard Home, End and arrow key working fine after exporting AWTUSE_TYPE4_PATCH=false; in solaris and linux
    But still Ctrl-c and Ctrl-v not working.
    I am using JDK1.5.0_07+Eclipse IDE 3.1
    -Dinesh

  • How to find out which object on a JPanel was clicked...

    I have a JPanel that contains about 200 other small JPanels(only 8 are visible at any one time), and a JButton(with Visible set to false).
    When one of the small JPanels is rightclicked i want to know which one was clicked so I can add the JButton to it (set theJButton Visible on the JPanel that was rightclicked). When the JButton is clicked, it will hide the JPanel it was on and hide itself again.
    I added a MouseListener(MousePressed) to the main Jpanel but I dont know how to find out which of the smaller JPanels was clicked. I would Also need to know how (in the ActionEvent for the JButton) the JButton knows which JPanel it is on so it knows which one to delete.
    ------------------------------------------------------------------CODE
    void JPanel1_mousePressed(MouseEvent e) {
    if ((e.getModifiers() & e.BUTTON3_MASK)!=0){
    ------------------------------------------------------------------CODE
    void JButton1_actionPerformed(ActionEvent e) {
    ------------------------------------------------------------------CODE
    Can this be done or should I add a MousePressed Listener to each of the 200 small JPanels and create a JButton for each of them??
    Any Info Appreciated... Thanks....

    Here you get a hint, hope have added all mouseListener as well and registered....addMouseLi...etc
    // many JPanels here...
    JPanel clickedPanel;  // a reference only
    // In mouse Click..
    public void mouseClicked( MouseEvent e ){
              clickedPanel = e.getSource( );
              clickedPanel.add(new JButton("Look, I am Added") );
    }  // it is Only HINT, a working HINT

  • How to find out row that was clicked in DataTable?

    Hi there,
    i have a dataTable component which renders a list from database. In the last column of this table you can click a link for further processing for this row.
    How to identify which row was clicked?
    <f:view>
         <h3>Subtitel</h3>
         <h:form>
           <h:dataTable      headerClass="tableheader"
                             var="list"
                             value="#{Uebersicht.uebersichtsliste}">
              <h:column>
                   <f:facet name="header">
                        <f:verbatim>KW</f:verbatim>
                            </f:facet>
                           <h:outputText value="#{list.cal.kw}" />
              </h:column>
              <h:column >
                   <f:facet name="header">
                        <f:verbatim>Bemerkung</f:verbatim>
                            </f:facet>
                   <h:outputText value="#{list.cal.feiertagNat}" />
              </h:column>
              <h:column >
                   <f:facet name="header">
                        <f:verbatim>Start</f:verbatim>
                            </f:facet>
                   <h:commandLink action="#{Uebersicht.start}" value="setzen"/>
              </h:column>
            </h:dataTable>
         </h:form>
    </f:view>How to identify the row to process in action methed "uebersicht.start"?
    Regards,
    ak

    the easiest way is you can send the parameters for the command link and the
    output link.this parameters will be the unique id of the rows ur r populating .
    get those parameters by:
    request.getParameter(keep the id u kept in the parameters list);
    I worked it out before ,its perfect.
    regards,
    raju reddy

  • How can I determine which image was clicked in 3D carousel?

    I have been modifying some 3D carousel code that I found in hopes that I can get it such that when image "resolv2.jpg" (or any of my other images) is clicked on at the front of my carousel, it goes to a specific webpage. By just replacing "moveBack(event.target) from the toggler section of the code with "navigateToURL:(newURLRequest('http://google.com'), the target DOES sucessfully go to google when clicked on. However, I want to modify this code by altering the else statement to say something to the effect of "else if event.target (clicked on object) is 'resolv2.jpg' THEN go to google". So essentially, my question is how can I determine which image was clicked? Here is the entire code with the area I was altering bolded:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" applicationComplete="init();" backgroundGradientColors="[#000033, #000033]" backgroundGradientAlphas="[1.0, 1.0]">
    <mx:Script>
              <![CDATA[
    //Import Papervision Classes
                   import org.papervision3d.scenes.*;
                   import org.papervision3d.cameras.*; 
                   import org.papervision3d.objects.*;
                   import org.papervision3d.objects.primitives.*;
                   import org.papervision3d.materials.*;
                   import org.papervision3d.materials.shadematerials.*;
                   import org.papervision3d.materials.utils.MaterialsList;
                   import org.papervision3d.lights.*;
                   import org.papervision3d.render.*;
                   import org.papervision3d.view.*;
                   import org.papervision3d.events.*;
                   import org.papervision3d.core.*;
                   import org.papervision3d.lights.PointLight3D;
                   import flash.filters.DropShadowFilter;
                         import caurina.transitions.*;
                         private var numOfItems:int = 5;
                         private var radius:Number = 600;
                         private var anglePer:Number = (Math.PI*2) / numOfItems;
                         //private var dsf:DropShadowFilter = new DropShadowFilter(10, 45, 0x000000, 0.3, 6, 6, 1, 3);
                   public var angleX:Number = anglePer;
             public var dest:Number = 1;
                   private var theLight:PointLight3D;
            //Papervision Engine
                   private var viewport:Viewport3D; 
                   private var scene:Scene3D; 
                   private var camera:Camera3D;
                   private var renderer:BasicRenderEngine;
             private var planeArray:Array = new Array();
             [Bindable]
             public var object:Object;
             private var arrayPlane:Object;
             private var p:Plane;
             //Initiation function           
             private function init():void 
             viewport = new Viewport3D(pv3dCanvas.width, pv3dCanvas.height, false, true); 
             pv3dCanvas.rawChildren.addChild(viewport); 
             viewport.buttonMode=true;
             renderer = new BasicRenderEngine();
             scene = new Scene3D(); 
             camera = new Camera3D();
             camera.zoom = 2; 
             createObjects(); 
             addEventListeners();
    //Create Objects function          
              private function createObjects():void{
              for(var i:uint=1; i<=numOfItems; i++)
                        /* var shadow:DropShadowFilter = new DropShadowFilter();
                        shadow.distance = 10;
            shadow.angle = 25; */
                        var bam:BitmapFileMaterial = new BitmapFileMaterial("images/resolv"+i+".jpg");
                        bam.oneSide = false;
                        bam.smooth = true;
            bam.interactive = true;
                        p = new Plane(bam, 220, 200, 2, 2);
                        p.x = Math.cos(i*anglePer) * radius;
                        p.z = Math.sin(i*anglePer) * radius;
                        p.rotationY = (-i*anglePer) * (180/Math.PI) + 270;
                        scene.addChild(p);
                        //p.filters=[shadow];
                        p.extra={pIdent:"in"};
                        p.addEventListener(InteractiveScene3DEvent.OBJECT_PRESS, toggler);
            planeArray[i] = p;
              // create lighting
            theLight = new PointLight3D();
            scene.addChild(theLight);
            theLight.y = pv3dCanvas.height;
              private function toggler(event:InteractiveScene3DEvent):void
                            // if the cube's position is "in", move it out else move it back
                            if (event.target.extra.pIdent == "in")
                                    moveOut(event.target);
                            else
                                   moveBack(event.target);
                    private function moveOut(object:Object):void
                              trace(object +" my object");
                            // for each cube that was not selected, remove the click event listener
                            for each (var arrayPlane:Object in planeArray)
                                    if (arrayPlane != object)
                                            arrayPlane.removeEventListener(InteractiveScene3DEvent.OBJECT_PRESS, toggler);
                            //right.enabled=false;
                            //left.enabled=false;
                            // move the selected cube out 1000 and rotate 90 degrees once it has finished moving out
                            Tweener.addTween(object, {scaleX:1.2, time:0.5, transition:"easeInOutSine", onComplete:rotateCube, onCompleteParams:[object]});
                            Tweener.addTween(object, {scaleY:1.2, time:0.5, transition:"easeInOutSine", onComplete:rotateCube, onCompleteParams:[object]});
                            // set the cube's position to "out"
                            object.extra = {pIdent:"out"};
                            // move the camera out 1000 and move it the to same y coordinate as the selected cube
                            //Tweener.addTween(camera, {x:1000, y:object.y, rotationX:0, time:0.5, transition:"easeInOutSine"});
                    private function moveBack(object:Object):void
                            // for each cube that was not selected, add the click event listener back
                            for each (var arrayPlane:Object in planeArray)
                                    if (arrayPlane != object)
                                            arrayPlane.addEventListener(InteractiveScene3DEvent.OBJECT_PRESS, toggler);
                            // move the selected cube back to 0 and rotate 90 degrees once it has finished moving back
                            Tweener.addTween(object, {scaleX:1, time:0.5, transition:"easeInOutSine", onComplete:rotateCube, onCompleteParams:[object]});
                            Tweener.addTween(object, {scaleY:1, time:0.5, transition:"easeInOutSine", onComplete:rotateCube, onCompleteParams:[object]});
                            // set the cube's position to "in"
                            object.extra = {pIdent:"in"};
                            // move the camera back to its original position
                            //Tweener.addTween(camera, {x:0, y:1000, rotationX:-30, time:0.5, transition:"easeInOutSine"});
                            //right.enabled=true;
                            //left.enabled=true;
                    private function goBack():void
                            // for each cube that was not selected, add the click event listener back
                            for each (var arrayPlane:Object in planeArray)
                                    if (arrayPlane != object)
                                            arrayPlane.addEventListener(InteractiveScene3DEvent.OBJECT_PRESS, toggler);
                    private function rotateCube(object:Object):void
                            //object.rotationX = 0;
                            //Tweener.addTween(object, {rotationZ:0, time:0.5, transition:"easeOutSine"});
              private function addEventListeners():void{
        this.addEventListener(Event.ENTER_FRAME, render);
    //Enter Frame Listener function             
    private function render(e:Event):void{ 
                     renderer.renderScene(scene, camera, viewport);
                     camera.x = Math.cos(angleX) * 800;                                                  
                     camera.z = Math.sin(angleX) * 800;
    private function moveRight():void
              dest++;
              Tweener.addTween(this, {angleX:dest*anglePer, time:0.5});
              //goBack();
    private function moveLeft():void
              dest--;
              Tweener.addTween(this, {angleX:dest*anglePer, time:0.5});
              //goBack();
              ]]>
    </mx:Script>
              <mx:Canvas width="1014" height="661">
              <mx:Canvas id="pv3dCanvas" x="503" y="20" width="400" height="204" borderColor="#110101" backgroundColor="#841414" alpha="1.0" backgroundAlpha="0.57"> 
              </mx:Canvas>
              <mx:Button x="804" y="232" label="right" id="right" click="moveRight(),goBack()"/>
              <mx:Button x="582" y="232" label="left"  id="left"  click="moveLeft(),goBack()" />
              </mx:Canvas>
    </mx:Application>

    Your answer may be correct, but I am very much a beginner to actionscript, and I was wondering moreso if it is possible to determine the root/url (i.e. images/resolv2.jpg)? Or even if InteractiveScene3DEvent calls a variable that holds this url? However, specifically, I'm just wondering if the actionscript itself could determine the url in a line of code such as "if object == BitmapFileMaterial("/images/resolv2.jpg"); "? Also, here's a copy of InteractiveScene3DEvent in more detail if you think that will help:
    public class InteractiveScene3DEvent extends Event
                         * Dispatched when a container in the ISM recieves a MouseEvent.CLICK event
                        * @eventType mouseClick
                        public static const OBJECT_CLICK:String = "mouseClick";
                         * Dispatched when a container in the ISM receives an MouseEvent.MOUSE_OVER event
                        * @eventType mouseOver
                        public static const OBJECT_OVER:String = "mouseOver";
                         * Dispatched when a container in the ISM receives an MouseEvent.MOUSE_OUT event
                        * @eventType mouseOut
                        public static const OBJECT_OUT:String = "mouseOut";
                         * Dispatched when a container in the ISM receives a MouseEvent.MOUSE_MOVE event
                        * @eventType mouseMove
                        public static const OBJECT_MOVE:String = "mouseMove";
                         * Dispatched when a container in the ISM receives a MouseEvent.MOUSE_PRESS event
                        * @eventType mousePress
                        public static const OBJECT_PRESS:String = "mousePress";
                         * Dispatched when a container in the ISM receives a MouseEvent.MOUSE_RELEASE event
                        * @eventType mouseRelease
                        public static const OBJECT_RELEASE:String = "mouseRelease";
                         * Dispatched when the main container of the ISM is clicked
                        * @eventType mouseReleaseOutside
                        public static const OBJECT_RELEASE_OUTSIDE:String = "mouseReleaseOutside";
                         * Dispatched when a container is created in the ISM for drawing and mouse interaction purposes
                        * @eventType objectAdded
                        public static const OBJECT_ADDED:String = "objectAdded";
                        public var displayObject3D                                        :DisplayObject3D = null;
                        public var sprite                                                            :Sprite = null;
                        public var face3d                                                            :Triangle3D = null;
                        public var x                                                                      :Number = 0;
                        public var y                                                                      :Number = 0;
                        public var renderHitData:RenderHitData;
                        public function InteractiveScene3DEvent(type:String, container3d:DisplayObject3D=null, sprite:Sprite=null, face3d:Triangle3D=null,x:Number=0, y:Number=0, renderhitData:RenderHitData = null, bubbles:Boolean=false, cancelable:Boolean=false)
                                  super(type, bubbles, cancelable);
                                  this.displayObject3D = container3d;
                                  this.sprite = sprite;
                                  this.face3d = face3d;
                                  this.x = x;
                                  this.y = y;
                                  this.renderHitData = renderhitData;
    Thank you so much!

  • Mouse-Over/Click to change content of Text/Images

    Hey,
    In the past i have seen website which have the ability for the user to select from images of news stories which would then change the content of the main frame depending on which one was moused over/clicked. I've checked for any way to do this outside of doing it with flash and embedding it and come up with nothing.
    Any suggestions or methods for doing this?
    Thanks.

    You could use the behavior "set text of layer"

  • Firefox 4 middle mouse button click acts different from v3

    clicking on the middle mouse button (not scrolling) acts like "open link in duplicated tab" rather than how it used to act like "open link in new tab".
    It places the new tab at the bottom/end of the list of tabs rather than how it used to as a child of the tab in which the middle button was clicked.
    Is there an option to change this behavior?

    jscher2000: THANK YOU. The thread was doubly useful.
    1. I had the same problem to cor-el's post to "Set the pref browser.tabs.insertRelatedAfterCurrent to true on the about:config page" as orwel had: it will not be changed.
    2. I disabled my addons one by one and found that THE PROBLEM WAS with Duplicate This Tab 1.2 When it is disabled, the center mouse click works as it used to -- and I assume this means 'correctly'. Certainly it's the way I want it to work:-)
    3. I am new to this support path. If you think the information I just posted can help those on the thread you pointed to, and you are so inclined, please inform them about Duplicate This Tab 1.2 should anyone there be using it.

  • My iMac mouse right click does not work now

    Hi all,
    My iMac mouse right click does not work now.  It was fine a couple of days ago. 
    Right click is definitely enabled, I have checked it several times.
    A Google search revealed that in Firefox it could be that I'm not using the latest version of Firebug.  I have auto updates on and Firebug is the latest version 1.11.3
    I use right click for correcting spell checked words, instead of a suggested correct spelling I get the 'open in a new tab' menu.
    In Firefox when I right click to open in a new tab I get the menu but it does nothing.
    It is driving me mad
    Any help will be greatly appreciated,
    Thank you
    P.S. thought it was suddenly working when I did the spell check in this post but it was the left click doign it....

    I don't use Firefox so I can't test it, but it might be something to do with a preference setting. Have a look at this link (ignore all the instructions), just look at the image of the preferences, there appears to be a setting in Javascript preferences relating to contextual menus. Check to see what your settings are:
    http://stackoverflow.com/questions/16377381/disable-firefoxs-silly-right-click-c ontext-menu

  • Thunderbird Crashes on selection +"ctrl+c" or mouse right click

    Whenever I attempt to copy text from within a mail message, by selecting text & pressing ctrl+C TB crashes,
    or Just on Mouse Right Click TB Crashes

    So, I finally did a fresh install of OSX on iMac, and the right click came back.
    I think there was something corrupted on the system that somehow showed up after Adobe CS2. I reinstalled CS2 but up to now, no problems at all.
    Thanks all for the insights, they all helped a lot!

  • Magic Mouse-Right click and left click reversed?

    Hello! Thanks in advance for any info you can provide regarding my problem. My wireless keyboard and magic mouse recently has been disconnecting from Bluetooth. A few days ago they both quit, and after a call to apple tech support, I tried everything, including re-loading my system software(Mac Pro, Snow Leopard 10.6.2) When my keyboard and mouse finally came back up, when I de-selected the right click, the mouse wouldn't click. The cursor moves around, but no click. I have to plug in another mouse and select right click, and then the mouse will click, but the right and left click are reversed.
    At one point, when plugging in an old wired mouse, I was able to select whether I wanted to enable the right or left click, and when I selected left click, the mouse quit clicking. I can't seem to get thatoption now with a wired mouse, and that might not even be related.
    Can anyone help! I'd like to get my Magic mouse working correctly!
    Thanks for all your help!
    Mark S.

    Hello ms:
    Welcome to Apple discussions.
    Try trashing a preference file (com.apple.bluetooth.plist) and restarting.
    Barry

  • Disable Mouse Right click inside Adobe Acrobat PDF plugin

    Hi All,
    We are rendering Adobe live cycle pdf file inside html object tag.
    I have disabled toolbar , navigation bar using navpanes=0&toolbar=0.
    But when mouse right click reenable the context menu again.
    So Is there any way to disable mouse righ click inside Adobe Acrobat PDF browser plugin?

    I had the same problem after updating Firefox to version 4.0 and Acrobat Reader to Version X. For me (Win XP) what solve the problem was deleting the Acrobat Reader Plugin (nppdf32.dll) in the Firefox plugin folder (C:\Program Files\Mozilla Firefox\plugins). So now there is only one Acrobat Reader Plugin left namely the one in the Acrobat Reader plugin folder (C:\Program Files\Adobe\Reader 10.0\Reader\Browser).

Maybe you are looking for

  • HT201317 How can I remove Photo Stream from my PC?

    How can I remove Photo Stream from my PC?

  • Mouse pointer icon

    My mouse pointer changes to other icons then does not change back to the default arrow. It has done this since installing tiger 6 months ago. I discovered if I move the pointer around the dock launch it will randomly get fixed. Anyone have a suggesti

  • My customized iPodQuiz packs don't ask more than 10 questions!

    Hi, I have a 120GB iPod Classic, iTunes 8.0.0.35 on Windows XP Home and iPod Software 1.0.2(I am having problem downloading 1.1.2 through iTunes, any solutions). My custom packs do get loaded in the iPod Quiz game but not ALL tags seem to work. I wan

  • Changing quantities from purchase requisition to purchase order

    Hi MM friends, I've created a purchase requisition with some materials and quantities. When I create a purchase orer in reference to this purchase requisition, SAP modifies quantities for some materials. Why ? Regards, Bahia.

  • User exit or badi or enhance for MIRO using Purchase order

    Hello All,           When Miro was done using Purchase order i want to change the field BSEG-ZUONR value to assign purchase oder number. In the setting when the purhcase order was selected but still it comes as blank. could any body suggest the solut