| View previous topic :: View next topic |
| Author |
Message |
damaskynos
Joined: 17 Feb 2010 Posts: 5
|
Posted: Wed Feb 17, 2010 11:51 pm Post subject: Recording Mouse |
|
|
Hello everyone
I'm new here and I need some advice .....
I downloaded the programs to record mouse movements, the information I have been very useful, but one is missing that I need and that is not in the various programs I've used.
I need to know the script of the mouse when it is your hand, the exact definition is the "selection of links" I have recovered all the information of mouse "Left - Right - Click - Up - Down etc etc, but I miss that, you know the saying script this function?
I apologize for my bad English sorry ....... .
Very nice |
|
| Back to top |
|
 |
Jeremiah
Joined: 20 Apr 2009 Posts: 797 Location: North Dakota, USA
|
Posted: Thu Feb 18, 2010 12:46 am Post subject: |
|
|
I'm not sure I understand exactly what you're looking for. Do you have a code you can post to start with? _________________ -Jeremiah |
|
| Back to top |
|
 |
damaskynos
Joined: 17 Feb 2010 Posts: 5
|
Posted: Thu Feb 18, 2010 1:21 am Post subject: |
|
|
Unfortunately the code is I who ask you why do not know eheheheh
I try to make me understand better:
when the mouse hovers over a link, the cirsone turns into a little hands, right?
I need script that is just what the code of "selection of links"
I hope I made myself understood, unfortunately they are not English and write it so bad  |
|
| Back to top |
|
 |
[VxE]
Joined: 07 Oct 2006 Posts: 3254 Location: Simi Valley, CA
|
|
| Back to top |
|
 |
damaskynos
Joined: 17 Feb 2010 Posts: 5
|
Posted: Thu Feb 18, 2010 12:26 pm Post subject: |
|
|
Hello
Thanks for info, I checked the description, but I was not very helpful, I managed to make this script:
| Code: | Loop
{
SetMouseDelay, -1
Send, {ENTER}
Sleep, 100
}
return |
but I have to click the mouse, what I need is an automatic thing when Curson becomes a hand pointing a link |
|
| Back to top |
|
 |
Jeremiah
Joined: 20 Apr 2009 Posts: 797 Location: North Dakota, USA
|
Posted: Thu Feb 18, 2010 2:04 pm Post subject: |
|
|
If you locate the exact coordanites where the mouse does change to a pointer finger, just use one of the two commands ...
http://www.autohotkey.com/docs/commands/Click.htm
http://www.autohotkey.com/docs/commands/MouseClick.htm
I, for one, like the MouseClick command because you can set the coordanites in the same line as opposed to moving the mouse first, then sending the Click command. But, that's just me. I'm sure other people have good reasons to do it another way. Hope this is what you're looking for. _________________ -Jeremiah |
|
| Back to top |
|
 |
closed
Joined: 07 Feb 2008 Posts: 509
|
Posted: Thu Feb 18, 2010 2:43 pm Post subject: |
|
|
To test it out:
| Code: | #persistent
SetTimer, alert,500
return
alert:
ToolTip, %A_Cursor%
if A_Cursor=Unknown ;hand is identified as unknown on my PC
{
click 2 ;will activate the link by doubleclicking
Sleep, 5000 ;to prevent multiple clicking
}
return
esc::
ExitApp |
|
|
| Back to top |
|
 |
Guest
|
Posted: Thu Feb 18, 2010 8:14 pm Post subject: |
|
|
Thank you " YUME ", I've been really useful, this works.
A 'one thing: you can delete the visual search (Arrow - Unknow) having to record on video what I do, I can delete it, is it possible? |
|
| Back to top |
|
 |
closed
Joined: 07 Feb 2008 Posts: 509
|
Posted: Fri Feb 19, 2010 7:44 am Post subject: |
|
|
| Code: | #persistent
SetTimer, alert,500
return
alert:
if A_Cursor=Unknown ;hand is identified as unknown on my PC
{
click 2 ;will activate the link by doubleclicking
Sleep, 5000 ;to prevent multiple clicking
}
return
esc::
ExitApp |
|
|
| Back to top |
|
 |
|