Jun 2, 2010

A4Tech K5-52D Review

I bought a K5-52D because I bought a new laptop (new for me, it is an used IBM T42 - very good little machine) and it required a mouse. I think this mouse is better for me than the 710F. It has better shape for my fingertip style mouse handling. It is light, it has programable double click button, buttons are very sensitive - they require very little force to press them. There is a rubber thing on the sides - but i removed them - they were too unstable. Unfortunately after one month the double click button is broken. It is stucked in. After a little trying to fix - it works if i press the bottom side of it.  - I lost the guarantee paper
The sensor also not bad - especially on glass and shiny surfaces. It doesn't really like to work on clothes but it works well on mouse mat and flat surfaces.
The mouse gestures are not too good, but other mouses also doesn't have this function so at least we can try it.
Conclusion: It is a very good mouse I can recommend it anybody to use in office programs (maybe alsso in games)

Mar 10, 2010

A4Tech X710F (or other X7) weight tuning

I forgot an important trick what I did with my X710F: I read somewhere that there is a removable weight inside it. I removed 2 screw from the mouse and I opened it and I had a good luck with it :). There were a weight in it with a label on it: 23g. I removed it (an other screw) and I have a very light mouse. It is as light now as my icon7 Z300.

Feb 15, 2010

A4Tech X710F 3XFire To 2XFire (X7 Triple click to double click)

I work(.Net) with an A4Tech X7 mouse (X710F). It is useful for programming because it has programmable side buttons. I use theese for copy and paste. (much more faster than Ctrl+C - Ctrl+V)
It has a nice 3Xfire button which is a fun but it is good-for nothing. It should useful if it would be a double click button. Because double click on a word == select word. Unfortunately it is not reprogrammable from built in driver software. I scanned google, forums and everywhere without any luck to find something to change this. Finally I found a very useful program:
http://www.autohotkey.com/
I read a lot from it's help and checked forums but I can't found solution to reduce number of click, so I tried to research my own algorythm :). After a lot of buggy version i found the solution which works always for me.
(the only little problem with it is in total commander left click on a file. It has to be changed to windows method in TC settings)
Here is the final version of AHK script (after a lot of hours spent to solve this little trick :) ):
LButton::
   if (First = 0)
   {
      Clicks := 0
      First := 1
   }
   If (A_ThisHotkey = A_PriorHotkey)
   {
      If (A_TimeSincePriorHotkey <= 157 && A_TimeSincePriorHotkey > 122)
      {
         If (Clicks = 0)
         {
             Clicks := 1
         }
         else
         {
             Clicks := 0
             Return
         }
      }
      else
      {
         Clicks := 0
      }
   }
   else
   {
      Clicks := 0      
   }
   Click Down
   KeyWait, LButton
   Click Up
Return

It is a small script but it was not as easy as it looks like. I tried with tilde, timers, in every combination, but this works :). I have a double click button :).
(maybe I am stupid because I am happy with this).
While finding this solution i added some other useful programming speed-up trick to AHK script. 
Just an idea: left Click + Left mouse move: Cut selected text. 
I hope You found this useful.


P.S. I found that there are some new a4Tech Product on market which seems to be better for programming than this one: A4-Tech K5-52D 16in1 I think it is programmable for double click function, and it has built in mouse "gestures" function.

Introduction

Hi.

I'm Imre Telek and this is my first English Blog. My mother language is hungarian and I am not the best in english so sorry for the mistakes :).
This is a technical blog. I will write PC related posts mostly.
I am a computer programmer (ASP.Net, C#, ASP, little C++, assembly, etc.). I like science, programming, digital cameras, etc.

I hope you will enjoy my Blog.