Two button mouse via XP?

Is it possible to attach a two-button (or more!) windows compatible mouse to a macbook pro for use in XP through boot camp? As a gamer it would certainly come in handy!

Yes, XP and OS X will both pick up USB mice and use them as normal.

Similar Messages

  • I use a two button mouse with my Mac Book Pro.  It works fine, but after installing Lion, the mouse wheel goes in reverse of what it did (rolling the wheel towards your palm goes up not down the page).  Anyone know how to fix this?

    I use a two button mouse with my Mac Book Pro.  It works fine, but after installing Lion, the mouse wheel goes in reverse of what it did (rolling the wheel towards your palm goes up not down the page).  Anyone know how to fix this?

    First sentence in OPs question:
    I use a two button mouse with my Mac Book Pro
    I guess the track pad settings would look similar to my screen shot?
    Regards,
    Colin R.

  • Regular Two Button Mouse, Corded

    I need help with choosing a mouse that is two button, non Apple, with Scroll Wheel. If the mouse does not need drivers or does not crash OS X or make it slow with drivers installed. If a particular update breaks the mouse or it does not work with Tiger, please post it here.
    Thank You

    In the end you'll need to figure out what mouse will work best for you, but I can make a personal suggestion. As long as you're right handed, I'd recommend a Logitech Multi-Button mouse. I have the MX 510 and I personally love it. It's fairly well supported right out of the box, although for optimum use you'd need to install the drivers. I personally disliked the Logitech drivers (and uninstalled them), but I am a big fan of USB Overdrive which is a third party mouse driver that works flawlessly. As far as the MX 510 goes, it's not very compact (read: meant for desktop use), but it's great for gaming and any type of precision work. I've had mine for over a year with no problem and they have a good warranty if anything did go wrong. Best of all though, it's pretty cheap right now.
    $32 @ ZipZoomFly w/free 2-day
    Hope this helps some. You might want to look at some full length reviews of whatever mouse you decide to go with before you buy it.

  • 2 button mouse for MAC

    I'm authoring a project on a PC but also need a MAC version.
    There are some functions that require a right mouse click. They
    work fine on the PC but can't get them to work on the MAC. I have
    emulateMultiButtonMouse = TRUE. I have a two button mouse on my
    MAC. Right clicking does not work and Control clicking does not
    work. Any ideas?

    Have you set;
    the emulateMultiButtonMouse = TRUE
    or;
    emulateMultiButtonMouse = TRUE
    If it isn't preceded by 'the' then it's just another
    variable. In MX2004 you could also use;
    _player.emulateMultiButtonMouse = TRUE

  • How to move node in treeView using two buttons ?

    Hello ,
    Am starter , and am working on a Winforms application.
    I browse an XML file , then I populate treeview in my interface. I want to move selected node in the two sens ( up and down)  using two button ( so not with events , normal drag and drop with mouse ) .
    - I select the nod 
    - I click on the up button , then the node take the new place ( something like , drop and insert maybe )
    I don't know if is possible to affect this events to button or they are another way to do this 
    this is my code concerning populating treeView :
    private void browseSourceFileBtn_Click(object sender, EventArgs e)
    var openSourceFile = openSourceFileDialog.ShowDialog();
    if (openSourceFile == DialogResult.OK)
    fichierSourcePath.Text = openSourceFileDialog.FileName;
    // Connect the XML FILE DATABASE to the application interface
    private void button1_Click(object sender, EventArgs e)
    if (openSourceFileDialog.FileName == String.Empty)
    MessageBox.Show("u should open a file", "Erreur de chargement", MessageBoxButtons.OK, MessageBoxIcon.Error);
    else
    try
    MessageBox.Show("plz wait ");
    statusLabel.Text = "Début de chargement du fichier";
    var doc = new XmlDocument();
    doc.Load(openSourceFileDialog.FileName);
    sourceTreeView.Nodes.Clear();
    var rootNode = new TreeNode(doc.DocumentElement.Name);
    sourceTreeView.Nodes.Add(rootNode);
    sourceTreeView.CheckBoxes = true;
    sourceTreeView.AllowDrop = true;
    DateTime starteTime = DateTime.Now;
    BuildNode(doc.DocumentElement, rootNode);
    DateTime endTime = DateTime.Now;
    TimeSpan duree = endTime - starteTime;
    sourceTreeView.ExpandAll();
    sourceTreeView.Nodes[0].EnsureVisible();
    string chargementTemps = "" + duree.Minutes + "min : " + duree.Seconds + "s : " + duree.Milliseconds + "ms";
    statusLabel.Text = "Chargement effectué avec succés en :" + chargementTemps;
    catch (Exception)
    sourceTreeView.Nodes.Clear();
    statusLabel.Text = "Echec de chargement";
    thanks u a lot 

    Hi Nico68er,
    According to your description, you'd like to move up or down the node in TreeView.
    By reseraching, I found this post in StackOverFlow is similar with your issue.http://stackoverflow.com/questions/2203975/move-node-in-tree-up-or-down
    From this answer.
    You can use the following extensions
    public static class Extensions
    public static void MoveUp(this TreeNode node)
    TreeNode parent = node.Parent;
    TreeView view = node.TreeView;
    if (parent != null)
    int index = parent.Nodes.IndexOf(node);
    if (index > 0)
    parent.Nodes.RemoveAt(index);
    parent.Nodes.Insert(index - 1, node);
    else if (node.TreeView.Nodes.Contains(node)) //root node
    int index = view.Nodes.IndexOf(node);
    if (index > 0)
    view.Nodes.RemoveAt(index);
    view.Nodes.Insert(index - 1, node);
    public static void MoveDown(this TreeNode node)
    TreeNode parent = node.Parent;
    TreeView view = node.TreeView;
    if (parent != null)
    int index = parent.Nodes.IndexOf(node);
    if (index < parent.Nodes.Count -1)
    parent.Nodes.RemoveAt(index);
    parent.Nodes.Insert(index + 1, node);
    else if (view != null && view.Nodes.Contains(node)) //root node
    int index = view.Nodes.IndexOf(node);
    if (index < view.Nodes.Count - 1)
    view.Nodes.RemoveAt(index);
    view.Nodes.Insert(index + 1, node);
    Child nodes will follow their parents.
    You could use this class in your program.
    If you want to move the node up. Call the Extensions.MoveUp(this.treeView1.SelectNode)
    private void button1_Click(object sender, EventArgs e)
                if (this.treeView1.SelectedNode != null)
                    Extensions.MoveUp(this.treeView1.SelectedNode);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem in Adding two buttons under same column header (in JTable)

    Hi,
    I have a JTable and to a particular column i want to add two buttons.
    Here the two buttons should be under the same column header and i need to add listners to these.
    Any idea how to do this?
    Thanks & regards
    Neel

    Of course as your header is drawn by a renderer, the buttons don't actually work, but you can listen for mouse clicks within the area of the header and see which button the mouse position was over.
    See the Java Table Sorter Demo code for how to add a mouse listener to the header...
    http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/index.html#TableSorterDemo
    ....and from there you should be able to determine where in the component the click occured by using the getX() and getY() methods of the MouseEvent to determine which button in the renderer component was clicked. Use something like Rectangle.contains() to match the click location against the buttons.

  • Mouse reduced to a three button mouse when unpluged/repluged

    It's me and my mouse again.
    This time the problem is that the scroll and side buttons stops working when I unplug and erplug the mouse back in again. It's a Logitech MX518 mouse.
    My MX518 use /dev/input/event4.
    # cat /proc/bus/input/devices
    I: Bus=0003 Vendor=046d Product=c01e Version=2200
    N: Name="Logitech USB-PS/2 Optical Mouse"
    P: Phys=usb-0000:00:1d.1-2/input0
    S: Sysfs=/class/input/input4
    H: Handlers=mouse2 event4
    B: EV=7
    B: KEY=ff0000 0 0 0 0 0 0 0 0
    B: REL=103
    This is a part of my /etc/X11/xorg,conf
    Section "Inputdevice"
    # Logitech MX 510/518
    Identifier "EvdevMouse"
    Driver "evdev"
    Option "Device" "/dev/input/event4"
    EndSection
    Section "Inputdevice"
    # IBM Thinkpad Touchpad
    Identifier "Mouse2"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    EndSection
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Laptop"
    Screen "Laptop single"
    Inputdevice "EvdevMouse" "CorePointer" # Mouse
    InputDevice "Mouse2" "SendCoreEvents" # Touchpad
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    When I unplug my mouse, the /dev/input/event4 is removed. When I replug my mouse back in again, a new event is created named /dev/input/event5. And my mouse is suddently reduced to a three button mouse. To fix this, I have to kill X, unplug/replug my mouse, and start X again.
    This is after unplug/replug the mouse without restarting X
    # cat /proc/bus/input/devices
    I: Bus=0003 Vendor=046d Product=c01e Version=2200
    N: Name="Logitech USB-PS/2 Optical Mouse"
    P: Phys=usb-0000:00:1d.1-2/input0
    S: Sysfs=/class/input/input5
    H: Handlers=mouse2 event5
    B: EV=7
    B: KEY=ff0000 0 0 0 0 0 0 0 0
    B: REL=103
    Have tried to create a udev rule, without any luck.
    ACTION=="add",
    KERNEL=="event*",
    SUBSYSTEM=="input",
    SYSFS(manufacturer)=="Logitech",
    SYSFS(product)=="USB Receiver",
    NAME="input/mx518"
    Does anyone have an idea that can be done to fix this.
    Orjanp

    I'm using udev to create links for my Logitech MX700 Duo (Logitech Elite keyboard + MX700 mouse).
    Here are my udev rules:
    # Laptop keyboard
    BUS=="serio", SYSFS{description}=="i8042 Kbd Port", SYMLINK+="input/clavier"
    # Alps TouchPad
    # GlidePoint
    BUS=="serio", SYSFS{description}=="i8042 Aux Port", KERNEL=="event?", SYMLINK+="input/touchpad"
    # StickPointer
    SUBSYSTEM=="input", SYSFS{dev}=="13:32", SYMLINK+="input/stick"
    # MX700 Duo
    # Keyboard
    BUS=="usb", SYSFS{bInterfaceNumber}=="00", SYSFS{bInterfaceProtocol}=="01", NAME="input/%k", SYMLINK+="input/mx700duo_clavier"
    # Mouse
    BUS=="usb", SYSFS{bInterfaceNumber}=="01", SYSFS{bInterfaceProtocol}=="02", NAME="input/%k", SYMLINK+="input/mx700duo_souris"
    The bInterfaceNumber/Protocol are the only thing that can differcienciate the two (same wireless receiver...).
    Hope you will be able to adapt it to your kb/mouse.
    I've never been able to make work 100% of it. Since the symlinks disapear if I unplug the usb mouse/kb, I can't unplug and replug them if Xorg is running...
    I would like to be able to control each of the devices independantly, like this:
    Section "InputDevice"
    Identifier "Clavier"
    Driver "kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbModel" "inspiron"
    Option "XkbLayout" "ca(fr)"
    EndSection
    Section "InputDevice"
    Driver "synaptics"
    Identifier "Alps Touchpad Glidepoint"
    Option "Device" "/dev/input/touchpad"
    #Option "Device" "/dev/input/event2"
    Option "Protocol" "auto-dev"
    Option "Buttons" "7"
    Option "LeftEdge" "120"
    Option "RightEdge" "830"
    Option "TopEdge" "120"
    Option "BottomEdge" "650"
    Option "FingerLow" "14"
    Option "FingerHigh" "15"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "110"
    Option "EmulateMidButtonTime" "75"
    Option "VertScrollDelta" "25"
    Option "HorizScrollDelta" "25"
    Option "MinSpeed" "1.2"
    Option "MaxSpeed" "2.0"
    Option "AccelFactor" "0.2"
    Option "EdgeMotionMinSpeed" "15"
    Option "EdgeMotionMaxSpeed" "30"
    Option "UpDownScrolling" "1"
    Option "CircularScrolling" "1"
    Option "CircScrollDelta" "0.1"
    Option "CircScrollTrigger" "2"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    Option "SHMConfig" "on"
    EndSection
    Section "InputDevice"
    Identifier "Alps Touchpad Stickpointer"
    Driver "mouse"
    #Option "Device" "/dev/input/event1"
    Option "Device" "/dev/input/stick"
    Option "Buttons" "2"
    EndSection
    Section "InputDevice"
    Identifier "LogitechMX700Duo_souris"
    Driver "evdev"
    Option "Dev Name" "Logitech USB Receiver"
    Option "Dev Phys" "usb-*/input1"
    Option "Device" "/dev/input/mx700duo_souris"
    #Option "Device" "/dev/input/mice"
    #Option "Device" "/dev/input/mouse2"
    Option "ZAxisMapping" "9 10"
    Option "Buttons" "10"
    Option "Resolution" "800"
    Option "Emulate3Buttons" "yes"
    EndSection
    Section "InputDevice"
    # Logitech Elite keyboard (MX700 Duo)
    Identifier "LogitechMX700Duo_clavier"
    Driver "kbd"
    Option "Device" "/dev/input/mx700duo_clavier"
    Option "XkbRules" "xorg"
    #Option "XkbModel" "logiinkseusb"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "ca(fr)"
    EndSection
    Section "ServerLayout"
    Identifier "nvidiac"
    Screen "Ecran LCD (nvidia)"
    Option "OffTime" "5"
    InputDevice "Clavier" "CoreKeyboard"
    InputDevice "Alps Touchpad Glidepoint" "SendCoreEvents"
    InputDevice "Alps Touchpad Stickpointer" "SendCoreEvents"
    InputDevice "LogitechMX700Duo_souris" "CorePointer"
    #InputDevice "LogitechMX700Duo_clavier" "SendCoreEvents"
    EndSection
    If the last line is uncommented, X doesn't work... I really don't know why. And now that Xorg 7 is installed, my mouse is 32 buttons!!!! This is a nightmare...

  • Why won't Apple design it's laptops with two buttons?

    For the past couple of years Apple has been heavily promoting their "Hello I'm a Mac, and I'm a PC" commercials to get Windows users to switch to Macs. I’m a Windows user and have been considering switching to a Mac Book Pro, but one thing that really bugs me is the lack of a right click button on the laptops. Yeah, Yeah, I know you can hold down the single button or ctrl-click, but neither one of these options is as fast or convenient as having a right click button. Why is Apple so stubbornly sticking with a single button mouse and track pad?
    For goodness sake two buttons are better than one!

    http://www.apple.com/feedback

  • I have a white screen on my ipod.  i have tried pushing the two buttons at same time but it doesn't work. i tried restoring on itunes but can't because of the password on ipod

    My ipod 4th gen. has a white screen.  i have tried pushing the two buttons but it didn't work.    I have tried to restore on i tunes but because there is a pass code on the ipot, it won't let me.  Any ideas?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software

  • Setup multi button mouse

    I have a nobutech bd-ms 140 external mouse that has 5 buttons. Anyway to set the buttons up through Snow Lep setup.

    Welcome to Apple Support Communities.
    Does your Mac recognize it? (Menubar, System Preferences, Hardware, Mouse)
    If it recognizes it as a generic USB two-button or three-button mouse, that's probably all you're going to get.
    Unlikely that it has an OS X driver, since it is listed on the manufacturer's website, www.nobutech.com as a Windows USB plug-n-play mouse. No mention of OS X on the spec sheet here: http://www.nobutech.com/products/BD-MS140/specs.pdf

  • My ipad will not start.  It is 1 year old...I have tried holding the two buttons and nothing..I have it connected to my desktop and it will make a ding noise but nothing comes up on the screen.

    My ipad will not start.  It is 1 year old...I have tried holding the two buttons and nothing..I have it connected to my desktop and it will make a ding noise but nothing comes up on the screen.

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • HT201412 My i Pad 3 shows "cannot Access Find My Friends open the app and review your sign in information to continue sharing your location. And I have two buttons : Later and Open but they don't work, As long as I have this situation I can do nothing on

    My i Pad 3 shows "cannot Access Find My Friends open the app and review your sign in information to continue sharing your location. And I have two buttons : Later and Open but they don't work. As long as I have this screen situation, I cann't do anything on my I Pad. Please help !!

    I have the same problem on my iPhone4. It is obviously a bug in the software. Once it pops out I am locked out of my phone. I can't even begin to describe the frustration this causes. All that stuff about holding down the buttons is useless. the phone won't even shut off. I can take a screen shot like that or go to voice control. Even when I got to a wifi connection, I can't get on. This app blocks everything else. This is a serious bug and can have serious consequences. The only thing my phone would do is go to voice control and let me play iTunes or phone people. Some smart phone hey?
    I have finally got to a place with a wide enough wifi to connect my computer and restore the phone. This has lasted over a day!
    I don't even know why Find My Friends is on my phone. Is it part of the package and how do I turn it off?

  • Is it possible to use a single iPhone with two contact numbers via dual sim or an app?

    Is it possible to use a single iPhone with two contact numbers via dual sim or an app?
    This would be a useful feature for personal and company numbers but using one mobile, rather than carrying two devices or diverting calls.

    Then go ahead and try it.  You'll find it's probably a load of crap.
    You want 2 numbers, then use Google Voice or TalkaTone
    Those are US based only Apps or numbers so no good. I won't be wasting money by just trying something either, especially because using a dual sim would mean purchasing another sim card on either pay as you go or monthly contact.

  • "Two Button Dialog" is displaying OK and CANCEL button in different language..

    Attachments:
    4.jpg ‏56 KB

    That doesn't look like the standard LabVIEW Two Button Dialog (icon is different).  Have any code you can show?
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Show indices of Last TWO buttons pressed in a boolean array (how to?)

    How would you go about showing the indices of the last TWO buttons pressed in an array of buttons, and only after TWO buttons have been pressed? I know how to show the LAST button pressed, and I know how to flag the event of two buttons being pressed (using the modulus), but I can't readily see how to show the indices of the last TWO.
    For example, in an array of 24 buttons, someone presses buttons 2 and 7... an indicator says 2 & 7. Those buttons remain pressed. Now the user presses buttons 14 and 3, the same indicator now reads 14 & 3.
    The indicator can be text, an int array, two ints, whatever. Any ideas?
    Message Edited by LV_Addict on 07-28-2008 01:29 PM

    Thanks Ben.
    To get the LAST button pressed, I just XOR the array and look for the True, as shown. No biggie.
    Yep, I know about the ability to expand the left side S/R to get a histogram, and have used that in the past. It doesn't seem to do anything for me here!
    Attachments:
    forumpic.jpg ‏9 KB

Maybe you are looking for

  • How to clean the screen?

    I wanted to see what you guys(and girls) had to say about cleaning your imac's screen. mine has a couple fingerprints on it and it drives me CRAZY cuz you can see it when the screen is displaying dark colors(like black). i dont think i can just throw

  • Past Seasons Episodes of TV Series

    Why to I have to pay to watch last season's episodes on channels that I subscribe to and pay for anyway?!  Especially last year's season?  This does not seem right.  I don't think this is how it was previously?!! 

  • How to settle project costs to AUC

    Dear Experts, Please teach us how to settle project costs to AUC. Your response is very much appreciated.

  • Nokia Karkit

    (Caps'Apology) I have a Nokia Advanced Carkit Euro 2 CK-7W my mobile is a Nokia 6120 classic it echoes when i get a call is there a solution

  • Tracking user shapes

    Hi all! I'm trying to track a user shape in my secondary room but it seems it can't be done or am I doing anything wrong? I can make it work with a square and a circle but when I want to assign a tracker to a user shape I can't select it in the "Use