Take a look at our
ThinkPads.com HOME PAGE
For those who might want to contribute to the blog, start here: Editors Alley Topic
Then contact Bill with a Private Message

Trackpoint moving by itself - Keyboard connector not seated properly?

T60/T61 Series
Post Reply
Message
Author
xsixt
Sophomore Member
Posts: 170
Joined: Fri Nov 27, 2015 4:21 am
Location: Australia

Trackpoint moving by itself - Keyboard connector not seated properly?

#1 Post by xsixt » Tue Nov 07, 2017 9:01 pm

Is there any relationship between the seating of the keyboard connector - and the movement of the trackpoint?

I briefly replaced a WLAN card, so the keyboard was in and out in a couple of minutes notice. I placed the keyboard face up so nothing was resting on the trackpoint. I hardly use the trackpoint and it's never done this before, but after reconnection now it moves around on its own. The only thing I can think of is, I didn't press the keyboard connector in firmly enough - however, everything on the keyboard works fine...

Thanks in advance.
T60p 15" UXGA T7600 | T61p 15.4" WUXGA T9500 |
Former: X61 T8300 [Slow GPU] | W510 FHD QM [Top screen but 16:9 sucks] | T420s [Portable but worst LCD ever] | X201 | X200 | X60T [Slow & hot]

Thinkpad4by3
Senior ThinkPadder
Senior ThinkPadder
Posts: 2670
Joined: Sun Aug 09, 2015 9:25 am
Location: N. Bellmore, ny

Re: Trackpoint moving by itself - Keyboard connector not seated properly?

#2 Post by Thinkpad4by3 » Tue Nov 07, 2017 9:45 pm

The trackpoint moving by itself means either it is internally broken and is calibrating itself wrong(never seen it before on 40+ TP's) or the more likely issue is the cap is banging against the Trackpoint and making it move. Try removing the cap and seeing if it stops.
Thinkpad4by3's Law of the Universe.

The efficiency of two screens equally sized with equal numbers if pixels are equal. The time spent by a 4:3 user complaining about 16:9 is proportional to the inefficiency working with a 16:9 display, therefore the amount of useful work extracted is equal.

RealBlackStuff
Admin Emeritus
Admin Emeritus
Posts: 23825
Joined: Mon Sep 18, 2006 5:17 am
Location: Loch Garman, Éire

Re: Trackpoint moving by itself - Keyboard connector not seated properly?

#3 Post by RealBlackStuff » Wed Nov 08, 2017 6:00 am

Did you switch off before you disconnected?
Lovely day for a Guinness! (The Real Black Stuff)

xsixt
Sophomore Member
Posts: 170
Joined: Fri Nov 27, 2015 4:21 am
Location: Australia

Re: Trackpoint moving by itself - Keyboard connector not seated properly?

#4 Post by xsixt » Wed Nov 08, 2017 10:04 pm

RealBlackStuff wrote:
Wed Nov 08, 2017 6:00 am
Did you switch off before you disconnected?
Certainly did.
Thinkpad4by3 wrote:
Tue Nov 07, 2017 9:45 pm
The trackpoint moving by itself means either it is internally broken and is calibrating itself wrong(never seen it before on 40+ TP's) or the more likely issue is the cap is banging against the Trackpoint and making it move. Try removing the cap and seeing if it stops.
I tried pushing the trackpoint around, to its extremes and back to the middle.

It sometimes stayed in the middle for a minute or two, and drifted off slowly or fast.

I have disabled it for the moment. Very annoying :twisted:
T60p 15" UXGA T7600 | T61p 15.4" WUXGA T9500 |
Former: X61 T8300 [Slow GPU] | W510 FHD QM [Top screen but 16:9 sucks] | T420s [Portable but worst LCD ever] | X201 | X200 | X60T [Slow & hot]

zoltan87
Junior Member
Junior Member
Posts: 292
Joined: Mon Oct 24, 2016 12:16 pm
Location: Plymouth, United Kingdom

Re: Trackpoint moving by itself - Keyboard connector not seated properly?

#5 Post by zoltan87 » Fri Apr 27, 2018 6:26 pm

Same issue on my dad's ThinkPad X201. The mouse cursor keeps drifting away sometimes slow, sometimes really fast. I am going to change the whole keyboard, because it's getting to a state, where it's just unusable with the trackpoint. Very annoying, because the keyboard otherwise is fine (apart from the fact that the keycaps became shiny over the years).
Thinkpad T60, 15" Flexview, with mods (Xiphmont's LED mod, T500 heatsink, cpu undervolt, reinforced frame)
Thinkpad T601, 15" Flexview, with mods (Xiphmont's LED mod, T500 heatsink, cpu undervolt, reinforced frame)
Thinkpad X32
Thinkpad T22
NEC ProSpeed SX/20

TOTAL
Freshman Member
Posts: 91
Joined: Thu Jan 05, 2017 12:09 pm
Location: London, UK

Re: Trackpoint moving by itself - Keyboard connector not seated properly?

#6 Post by TOTAL » Tue May 11, 2021 12:23 pm

Excavating in case. My third thinkpad, and each has had this issue.

Nearly fixed by uninstalling the synoptix or whatever it is called mouse software (different versions produce different issues) and using autohotkey script to make the pointer both more responsive and more controllable.

See autohotkey webpage for the details. The solution itself is totally free, intuitive and with plenty of application.

In case you want ready code, here is what works for me on windows 7:

Code: Select all

#InstallKeybdHook
#InstallMouseHook

#SingleInstance force
#NoEnv


;   ---------------------------------------------------------------------------------------------
; GET INTIAL MOUSE SPEED: 
; 0x70 (SPI_GETMOUSESPEED), third parameter is the speed (range is 1-20, 10 is default) 
;DllCall("SystemParametersInfo", UInt, 0x70, UInt, 0, UIntP, Mouse_Speed_Orig, UInt, 0) 


SetMouseDelay,-1 ;
SetBatchLines, -1
Process, Priority,, High

    DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 15, UInt, 0) 
; ----------------------------------------------------------------------------------------------------


; <COMPILER: v1.0.48.5>
Critical
CoordMode, Mouse, Screen

SendMode, Input
#Persistent
 
 
SetTimer, WatchCursor, 20
return
 
WatchCursor:
MouseGetPos, , , id, control
 
xlast = %xpos%
ylast = %ypos%
 
 
MouseGetPos, xpos, ypos
 
 
xmove := xpos-xlast
ymove := ypos-ylast
 
X := xmove
Y := ymove
 
X /= 3.5
Y /= 3.5
 
if (xmove!=0&&ymove!=0)
{
 
MouseEvent(X,Y)
}
return
 

 
MouseEvent(a_xpos, a_ypos)
{
   DllCall("mouse_event", uint,1, int,a_xpos, int,a_ypos, uint,0, int,0 )
}
 

mbutton:: mbutton


 
 

Post Reply
  • Similar Topics
    Replies
    Views
    Last post

Return to “ThinkPad T60/T61 Series”

Who is online

Users browsing this forum: No registered users and 37 guests