Jump to content

Acer Laptops - Cursor Jumping around whilst typing typing.


Recommended Posts

Posted

Were having a problem with all of our Acer Laptops (5720/5630ez) where when staff are typing on them the cursor will jump backwards - meaning when there typing it goes up a paragraph, or across a few cells in a excel spreadsheet.

Anyone heard of this before/Know how to fix it?

As acer aren't particularly helpful :mad: and i don't really want to send 50 laptops back :(....

 

mb

Posted
Usually due to people touching the touchpad lightly during typing. Try seeing if the laptops have a 'disable the touchpad' button, sometimes it is just a square symbol.
Posted
they don't unfortunately, a teacher did say they used there pointers to type (thus avoiding the touch pad) and it still happened :confused:
Posted
We have had this on other laptops, like the HP 530. Make sure they have the synaptics mouse driver installed (or equivlennt), then in the utility there is a sensitivty setting, to stop it happening.
Posted
I haven't no - sounds interesting. How do i massage the touch pad?

 

haha just press around the touchpad to see if its pressure on the face plate that is causing it. Post above is v correct about sensitivity, this can cause issues where leaning on the faceplate can cause a mouse press. Reducing sensitivty may sort some of the issues out.

Posted

Yes, this happens on my acer work laptop and it is an absolute pain in the backside.

 

I disabled the touchpad and use a mouse now, it's just easier and less dramatic than crying when you completely type the wrong stuff into a terminal.

Posted

I thought it was just me doing something wrong when I was using mine :eek:

 

Good job I've ordered mice to go with the 15 I've just ordered!

 

regards

 

Simon

Posted

This happens on my Acer laptop (model 6930G), although its only started happening since i installed win7pro64bit which i find strange. Never happen on vista which i had installed for 8 months.

 

It is real pain in the ass though !

 

Would love a fix :)

Posted

Just came across the following AutoHotKey script that does the same thing as TouchFreeze (but more reliably according to the comments).

 

DisableTrackpad.ahk

; Source: http://productivegeek.com/forums/topic/touchfreeze-alternative-in-ahk#post-1548
; v1.0 2010-02-23 Original Release
; v1.1 2010-02-25 Added user configuration section
;                 Added option to block mouse clicks
;                 Added option to omit blocking for shift, ctrl, alt, win keys

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

; User configuration
DisableTime := 500 ;in milliseconds
BlockMouseMove := True
BlockLeftClick := True
BlockMiddleClick := True
BlockRightClick := True
AllowShift := True
AllowCtrl := True
AllowAlt := True
AllowWin :=True

;keyboard hook code credit: http://www.autohotkey.com/forum/post-127490.html#127490
#Persistent
OnExit, Unhook

;initialize
hHookKeybd := SetWindowsHookEx(WH_KEYBOARD_LL   := 13, RegisterCallback("Keyboard", "Fast"))
Hotkey, LButton, DoNothing, Off
Hotkey, MButton, DoNothing, Off
Hotkey, RButton, DoNothing, Off
Return

DisableTrackpad:
ShiftActive := AllowShift && GetKeyState("Shift")
CtrlActive := AllowCtrl && GetKeyState("Ctrl")
AltActive := AllowAlt && GetKeyState("Alt")
LWinActive := AllowWin && GetKeyState("LWin")
RWinActive := AllowWin && GetKeyState("RWin")
if (!ShiftActive && !CtrlActive && !AltActive && !LWinActive && !RWinActive)
{
  if (BlockMouseMove)
     BlockInput, MouseMove
  if (BlockLeftClick)
     Hotkey, LButton, DoNothing, On
  if (BlockMiddleClick)
     Hotkey, MButton, DoNothing, On
  if (BlockLeftClick)
     Hotkey, RButton, DoNothing, On
}
Return

ReenableTrackpad:
if (BlockMouseMove)
  BlockInput, MouseMoveOff
if (BlockLeftClick)
  Hotkey, LButton, Off
if (BlockMiddleClick)
  Hotkey, MButton, Off
if (BlockLeftClick)
  Hotkey, RButton, Off
Return

DoNothing:
Return

Unhook:
UnhookWindowsHookEx(hHookKeybd)
ExitApp

Keyboard(nCode, wParam, lParam)
{
  Critical
  If !nCode
  {
     Gosub, DisableTrackpad
     SetTimer, ReenableTrackpad, %DisableTime%
  }
  Return CallNextHookEx(nCode, wParam, lParam)
}

SetWindowsHookEx(idHook, pfn)
{
  Return DllCall("SetWindowsHookEx", "int", idHook, "Uint", pfn, "Uint", DllCall("GetModuleHandle", "Uint", 0), "Uint", 0)
}

UnhookWindowsHookEx(hHook)
{
  Return DllCall("UnhookWindowsHookEx", "Uint", hHook)
}

CallNextHookEx(nCode, wParam, lParam, hHook = 0)
{
  Return DllCall("CallNextHookEx", "Uint", hHook, "int", nCode, "Uint", wParam, "Uint", lParam)
}

Posted
to disable the touchpad on the 5720, you only have to press Fn + F7. I accidently hit this once and spent three hours trying to fix my touchpad!
  • 4 years later...
Posted
to disable the touchpad on the 5720, you only have to press Fn + F7. I accidently hit this once and spent three hours trying to fix my touchpad!

 

Wow, that was too easy! There it was, staring me in the Fn face all this time! Thanks.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...