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...

Similar Messages

  • Three button mouse problems

    I have a Kensington model#72123 right and left button with a third middle scroll button. I have Kensington MouseWorks software loaded. The problem is that I cannot get the center scroll button to work properly with Color. When I set a vignette and try to use to middle click inside the vignette shape to drag to soften the edges nothing happens. I don't want to have to go out and spend money on a new Apple three button mouse if this procedure can be done with the Kensington. Any body know whats going on here? Am I misinformed that the soften edges procedure can be done by dragging inside a vignette using the third button? Thanks.

    Any body know whats going on here?
    Yep. This application suffers from the operator's input through a mouse but control surfaces are still horrendously expensive.
    That being said, I read in the manual quite awhile ago that you can manipulate any data with either direct entry or by middle-click and hold while dragging in the data entry box which is what I do all the time when creating the vignette soft edge. I have a Mighty Mouse as well as a Wacom mouse/pen that I use and while they do work by dragging the vignette edge, many times they don't. I find middle click/drag in the direct entry box to far more reliable.
    If you want to drag the vignette edge, perhaps you'd have better luck contacting Kensington tech support?

  • How can I do a "middle mouse click" without a 3 button mouse???

    #1:  Is there a keyboard command that will perform a middle click?  I have googled and googled and googled and found hardly any info except something about "option + click", which does not work.
    #2:  Is there a way to make the magic mouse perform a middle click?

    If you could explain your need for this, perhaps someone could offer a work-around solution.
    For example, if it is for a game, many games allow the user to change the presets for actions. If this is the case, setting the desired action to use something like Option-click should work; by doing it within the program (the game) it avoids needing to do anything to the OS.

  • Magic mouse works only as 2 button mouse

    And Bluetooth preferences no more available
    Any Idea?

    you're going to have the same problem occurring with many
    more rollover/rollout sequences if the swf containing that code is
    placed online.
    when loading is complete, some of pic_mc's properties will
    return to default, including its _visible property. what you're
    seeing, if you rollout before loading is complete, is
    pic_mc._visible better assigned zero by your rollout, loading
    completing and pic_mc's _visible property returning to true. online
    users will see that even more frequently.
    to remedy, use pic_mc's _alpha property. that does not return
    to default when loading is complete.

  • Wired Keyboard keeps randomly pushing the P button, even when unplugged.

    Hello mac community,
    I have owned a imac i5 27" for just over a year and it has just starting always automatically pushing the P button then capslock p button, then P again. I have tried both restarts the Vram I think and the other restart. Which was unplugging the power for 15 or more seconds then plugging back in, the other one was the hold command p and r and the home button i think. It restarted then restarted again, but it is still doing the same thing. I even restarted with the keyboard unplugged and it is still doing it. I have a wired keyboard not bluetooth.
    Thanks in advance

    Settings>General>Accessibility>Zoom>Off

  • 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

  • Wired Multi-Button Mouse for OSX.5 & PowerMac - Seeking Recommendations

    I poked around at the Apple Store on-line and I saw many wireless mice and a few wired mice. I focused my attention on the wired mice because I am not interested in the wireless variety for my desktop and in several of the reviews it mentions incompatibility with OSX.5.
    So, any OSX.5 users out there have any feedback on the good, the bad and the untrustworthy multi-button mice?
    I like most of the Mighty Mouse features, except for the lack of a right click button (yes I can set the little scroll wheel button for that (and I have) but it just doesn't feel right to me).
    Thanks.

    Martin,
    The Mighty Mouse does have right-click functionality, without using the scroll wheel. I'm not really sure why you think it doesn't. Nevertheless...
    I really, really like all of the Kensington products. I have a Kensington Bluetooth Pilot Mouse Mini for use with my Macbook Pro, but I also have a USB "Studio" mouse that is still used with an older G4 tower, and it has delivered fantastic performance. This is a three-button mouse with a touch-sensitive strip in place of a scroll wheel, but I don't think they make this one anymore (unfortunately).
    Perhaps the best thing about Kensington devices is the accompanying "Mouseworks" software. The software consists of drivers for most of their products (not necessary in most cases) and a new "preference pane" where the device's buttons and features can be configured and customized, even on an application-by-application basis. Very powerful tools.
    Scott

  • I have problem when opening a pdf page, my mouse control is hijacked to that tab when im on other tab, i cant scroll or use the middle rollling button, i have to click at the pdf tab then my control over the mouse middle button is restored.

    I think I have this problem even on earlier version. The thing is I set open link in new tab and not switch over to the opened tab. My habit is to open a pdf page in the background and let it load first. What happen is that when the pdf page finished loading ( i do not set to download it), it hijacks my middle mouse button control. When i scroll down or scroll up on my original tab, it wont scroll on the tab, but insttead it scrolls on the pdf tab. I have to click on the pdf tab, then i can use the scrolling function on other tabs back. As for when i opened several pdf tabs, it seems i have to click on the tab that just finished loading, that means several times until they all finish loading. It has been getting on my nerve lately. And all pdf trouble i search from google led to unable to open pdf, firefox hang or crash when opening a pdf and the likes.

    core-el, i don't see the advantage of that or i can't figure out how i'm supposed to use it. for starters, i have to click the mouse in order to get "add bookmark here" to open, which is no different than clicking on the star in the location bar, or right-clicking on the page. there are also options in the bookmarks toolbar, but they all require clicking the mouse & holding down the right button, etc.
    my goal is to use keystrokes only. typing on the keyboard, using both hands, using the space bar & my left pinky finger to tab over are all painless routines for me. as soon as i have to take my fingers off the keyboard & use the mouse, the pain begins.
    as i said, in older versions of firefox, all i had to do to bookmark a page was click ctrl>d, then tab over & arrow down, when appropriate, to find the folder & add the bookmark. for me, as a touch-typist whose speed is between 60 & 80 wpm, this is lightning fast.
    if i have this wrong, please correct me. i just see it as more mouse clicks that don't save me time or pain.

  • Premiere Elements 13 issue with the mouse on When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip rom the mouse.    The clip follows my mouse movements and goes to other places in my

    Premiere Elements 13 issue with the mouse on MAC OSX Yosemite 10.10.1
    When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip from the mouse.
    The clip follows my mouse movements and goes to other places in my time line.
    I try to delete these extra insertions, but the mouse will not release the clip.
    Action I’ve taken: I’ve re-installed Premiere Elements 13. Problem remains.
    This issue has consumed too much of my time and does not go away.  It ruins my video.
    Help please.
    Thanks

    I tried using the Guest Account on my Mac. In the Guest Account, Illustrator works perfect!
    Then I started wondering what processes (tools/tweaks) I run by default on my account. Turned out the problem was called by a little background tool called RightZoom. RightZoom let's the green 'zoom' button always maximize your current window.
    So thanks! Problem solved!

  • How to bring mouse cursor to the default button of a dialog, like in windows

    Anybody know how to achieve this in LV?
    Please see the attached screenshot.
    - Partha
    LabVIEW - Wires that catch bugs!
    Attachments:
    Automatically move mouse pointer to the default button.PNG ‏34 KB

    Dear partha,
    1) You can be able to trace out the location of the button
    2) You can be able to move the cursor to that location
    3) You can be able to automatically generate a click on that button
    Use user32.dll to achieve all this. when u use it in CLN(Call Library Node), u can c functions 4 that.
    Try and ask if further help needed!!!!!
    Thanks,
    Mathan

  • Has anyone had trouble with the middle mouse (open in new tab) button lately?

    Hi gang. Since v29 came out, I have been having trouble with the middle mouse (open in new tab) button.
    Sometimes the button does not register with Firefox. And sometimes FF acts like I pressed it several times.
    Has anyone else had any problems? I use an add-on called
    '''''[https://addons.mozilla.org/en-US/firefox/addon/mclickfocustab/?src=collection&collection_id=33bf10fa-666d-45a2-9bc9-491ce21671c6 MClickFocusTab]'''''
    I disabled it but the problem was still there.

    ''''' "Sometimes the button does not register with Firefox. And sometimes FF acts like I pressed it several times." '''''
    Sounds like a mouse on its' way to mouse-heaven. Seriously, the exact symptoms I have seen with a dozen 3 button mouse's (?meese - ?mice) over the last 15 years. <br />
    Not registering a click is usually due to a dirty contact. And the "double-click" is when the flat spring looses tension and bounces.
    I have had similar happen with the left button, too. But when it happens to that button it is more noticeable much sooner.
    I bought a box of a dozen A4D house branded infrared wireless 3-button mouse's for like $24.00 back in 2000 that were on clearance because the driver disk didn't support W2K, only Win95, 98, and NT4. I got newer drivers from the A4D website and wore all 12 out over the 8 or 9 years. I even fixed a few that broke from the parts from other broken mouse's. I still have 6 or 7 of them laying in the "needs to be fixed" box under my workbench. I'll probably never fix them though, the nano receiver USB mouses I have been using for the 4 or 5 years have much better battery life and lately only need one AA battery.

  • After several time installed CS6 and a clean Windows 8.1 bridge still pause after selecting a picture or right click with button mouse.

    My bridge pause all the time. I have to wait 30 seconds after selecting a picture or click the right button of the mouse. I have installed a new windows 8.1, and a fresh CD6. But still these problems in Bridge. No problems in Photoshop. What to do

    What is the problem:
    When I choose a picture in Bridge I have to wait 20 till 30 seconds (sometimes more).
    When I choose with right click of the mouse. I have to wait the same time.
    When I choose the menu. Also
    After opening the picture(s) in Camera RAW. There are no problems
    In Photoshop there are also no problems. Everything works all right.
    Only Bridge have these problems. But I can’t work with it.
    My Computer
    HP Z820 with double     CPU Type           Mobile Intel Celeron M, 2000 MHz
    Nvidia Geforce GTX 980 card
    System memory 64 Gb
    Windows 8.1 Home Edition
    All software is up to date, incl BIOS
    DirectX 4.09.00.0904 (DirectX 9.0c)
    Lots of space on my disc drives
    Software: Adobe Master Collection. But only installed Photoshop and Adobe Acrobat
    Installation done with my original DVD of Adobe. All software updated
    But still problems
    Software installed again (including Windows).
    Now installed adobe from a download version from adobe.
    Still the same problems
    I have no illegal software!
    Multimedia      
    Geluidskaart     SB Recon3D PCIe Audio Controller
    Opslag 
    IDE apparaat     Standaard Dual Channel PCI IDE Controller
    SCSI/RAID apparaat       Controlefunctie voor opslagruimten van Microsoft
    SCSI/RAID apparaat       Intel(R) C600 Series Chipset SAS RAID (SATA mode)
    SCSI/RAID apparaat       Intel(R) C600 Series Chipset SATA RAID-controller
    SCSI/RAID apparaat       LSI Adapter, SAS2 2308 Mustang
    Harde schijf       ATA Samsung SSD 850 SCSI Disk Device
    Harde schijf       ATA SAMSUNG SSD 830 SCSI Disk Device
    Harde schijf       SEAGATE ST3450856SS SCSI Disk Device
    Harde schijf       SEAGATE ST3450856SS SCSI Disk Device
    Optische Station             HL-DT-ST BD-RE  BH16NS40
    Optische Station             hp DVD-RAM GHA3N
    SMART Status harde schijf         Onbekend
    Partities             
    C: (NTFS)            243668 MB (150173 MB vrij)
    D: (NTFS)            122101 MB (65332 MB vrij)
    E: (NTFS)            429244 MB (322019 MB vrij)
    F: (NTFS)            429244 MB (243491 MB vrij)
    Geheugencapaciteit       1195.6 GB (762.7 GB vrij)
    Invoerapparaten           
    Toetsenbord     Logitech HID-Compliant Keyboard
    Toetsenbord     Standaard-PS/2-toetsenbord
    Muis     HID-compliant Mouse
    Muis     Microsoft PS/2-muis
    Netwerk            
    Netwerkkaart    Intel(R) 82574L Gigabit-netwerkverbinding  (192.168.178.37)
    Netwerkkaart    Intel(R) 82579LM Gigabit Network Connection
    Peripherieapparaten    
    Printer  Adobe PDF
    Printer  EPSON XP-950 Series
    Printer  HP 4730 PCL 6
    Printer  Microsoft XPS Document Writer
    USB1 apparaat Texas Instruments USB 3.0 eXtensible Host Controller - 0096 (Microsoft)
    USB2 apparaat Intel(R) C600/X79 series chipset USB2 Enhanced Host Controller #1 - 1D26
    USB2 apparaat Intel(R) C600/X79 series chipset USB2 Enhanced Host Controller #2 - 1D2D
    Van: station_two 
    Verzonden: maandag 13 april 2015 21:58
    Aan: johan van der klaauw
    Onderwerp:  After several time installed CS6 and a clean Windows 8.1 bridge still pause after selecting a picture or right click with button mouse.
    After several time installed CS6 and a clean Windows 8.1 bridge still pause after selecting a picture or right click with button mouse.
    created by station_two <https://forums.adobe.com/people/station_two>  in Bridge General Discussion - View the full discussion <https://forums.adobe.com/message/7434796#7434796>

  • Middle mouse button (Mouse button3) gone

    Dear support community
    I have a huge problem. I am working on a 3D project where I really need my middle mouse button!
    My co worker came by today and helped me. He plugged in his mighty mouse and have assigned the middle mouse to "Application switcher" He then left ofc with his Mighty mouse, and did not assign the middle button back to "button 3" and now every time I use my middle mouse button on my regular USB mouse (Razer Krait) I can't use the middle mouse button, without the Application switcher coming on all the time. I have searched for over an hour now on Google and more and no answers or solutions to my problem at all.
    I am not in the position to go out and find, or buy a mighty mouse and plug it in, just to switch back the button 3 function, and it is weekend now, so no co-workers around before Monday, and my project is due to monday
    This is how it looked like (images from Google) NOTE this is just a random dump. Mine was set to "Application Switcher"
    Now when the Mighty Mouse is unplugged it looks like this.
    I can't belive it has to be so hard? FYI yes i did used to have an mighty mouse of my own, but it is broken and gone
    Thank you.

    Hello,
    I just have this problem. I found the culprit file : "com.apple.symbolichotkeys.plist" in Home / Library / preferences.
    Don't know if it's a problem to delete it, but you can create a new account in the System Preferences Panel (Users and Groups), and then copy this file from the new account to your usual one. 
    After you can delete or not the new account.
    So, the middle button can be use in applications like Davinci Resolve, etc.
    Hope it 'll help...

  • Strange mouse click behaviour, (GTK?) buttons don't work

    Hey,
    I have had this problem since the last major upgrade, which included Kernel, Xfce, Xorg. Sadly I can't pinpoint this problem, that's why I wanted to ask if anybody else has the same problem and they have figured out what the cause is.
    Essentially this mostly happens with the Xfce panel, while clicking on a Laucher button. I click on a button, which works, then release mouse1, but then the button seems to be still pressed, as if mouse1 was not released. When the mouse leaves the area, the button "pops up" again, but when hovering over the button again, it looks like pressed again, even though it's not.
    That's not all that bad, but what happened recently, is while using Eclipse some (very random) buttons simply won't work at all. All this while they seem pressed, even though mouse1 has been released. I then have to use the keyboard to activate the button.
    I don't mind the Xfce problem so much, but I need Eclipse for work, and it just can't be the solution that I have to use the Keyboard when a button doesn't seem to work. The problem seems to be limited to button-like (including Tabs) GTK GUI elements. No problem with Qt yet.
    This is a laptop computer, with a normal touchpad and a USB mouse attached to it.
    And my mouse is NOT broken, as I have tested with a number of different mice and even other OSes on the same machine with same hardware configuration!
    Thanks,
    m.

    This may be related to the issue where buttons in Flash embeds don't work. You can probably 'fix' the issue by downgrading gtk2 to 2.16.5.
    ## Actually maybe not. Meh.
    Last edited by Peasantoid (2009-10-24 21:20:24)

  • How to Set "Enter" keyword instead of mouse click for template based button

    hi,
    I  have a page with textfield and submit button. but every time user has to use mouse to click on submit button .
    how can i make the page work even if user  just press "Enter" on keyboard.
    it should work similar to login page where user can either use mouse or simply  press "enter ".  Any help on this please ?
    Thanks,
    Sri

    Hi ,
    Thanks For the help.
    Apart from Setting the Submit when Enter pressed setting of the text item to Yes.  I had to separate the process.
    It works only when I separated the After submit process
    1-  one After submit process for submit button
    2 -Another After submit process when button pressed- No button condition
       condition type = Curren page = page submitted(this page was posted).
    Thanks,
    Sri

Maybe you are looking for

  • Total rookie trying to get on-line with my ipod touch.

    Ok... I just got a new ipod touch for my family and have no idea what is happening when I try to go on-line. Whenever we try to go to a web site we are asked to select a wi-fi network. When we choose on, we are asked for a password or to join. I have

  • IRC Spammer / Impersonator

    This morning I was informed by a TU via Private Message on IRC that there were spammer impersonating me. He first ask what happened last night and as I had no idea what he was talking about this was when I first discovered what happened. There are so

  • Align ALV Output Display to fit window resolution using cl_gui_custom_conta

    hi, my ALV Display is not fitting to the window screen for different resolutions. big monitor the screen display is too small and small monitor its fitting. I want to have DYNAMIC screen fit using   cl_gui_custom_container... is it possible?? ags.

  • Should we use ArrayList or Vector?

    Should we use ArrayList or Vector in web programming environment? thanks,

  • Set spacebar as shortcut to program

    Hi, I want to make a program to set a shortcut to a program in Windows, so I can launch certain programs with the spacebar key. Windows does not support setting a "Shortcut key:" to spacebar on the keyboard. Does anyone know the how to go about this?