how to create hotkey for doubleclick?

0

0

When working I often need to select an entire word by put the cursor on that word (variable for e.g.) and it can be mabe via doubleckick.

But I'm interested how can I make a hotkey for this (not to use mouse at all)?

I'm on Windows 7 and using Aptana as IDE.

Does anyone know how to achieve this by configuring Windows or Aptana?

k102

Posted 2012-06-22T13:25:52.217

Reputation: 147

Answers

3

use AutoHotKey - it can automate many tasks

example: the line #a:: send {click 30} will cause the mouse to click 30 times when I press Win+A

SeanC

Posted 2012-06-22T13:25:52.217

Reputation: 3 439

Just change the {click 30} to {click 2} and you will able to use it as double click. – avirk – 2012-06-23T02:33:24.650