I want to thank you very much for the time and effort you gave me. I have a scrolling mouse now. Here is what I did just in case someone has the same issues.
Ok this was a strange one. For me that is given how many other distros had this mouse working w/o any issues.
Here is what I found in the device Mouse area
<I added your text here>
# Identifier "Mouse1"
# Driver "mouse"
# Option "Protocol" "PS/2"
.
.
.
# The mouse device. The device is normally set to /dev/mouse,
Option "Device" "/dev/mouse"
# Option "Device" "/dev/psaux"
As you can see I commented out the "old" definition.
but then I noticed this :
# The Identifier line must be present
# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens. The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen. In this example, screen 2 is located to the
# right of screen 1.
# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used. Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".
Identifier "Simple Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
I noticed that the Mouse has the number 1 and not 0 so after adding your text, rebooting and it still not working I tried to change the number from 0 to 1.
Upon my return my mouse is working the way it was meant too.
So my section looks like this now
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
EndSection
thanks again.
