AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Recording Mouse

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
damaskynos



Joined: 17 Feb 2010
Posts: 5

PostPosted: Wed Feb 17, 2010 11:51 pm    Post subject: Recording Mouse Reply with quote

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 .......Embarassed .

Very nice
Back to top
View user's profile Send private message
Jeremiah



Joined: 20 Apr 2009
Posts: 797
Location: North Dakota, USA

PostPosted: Thu Feb 18, 2010 12:46 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail MSN Messenger
damaskynos



Joined: 17 Feb 2010
Posts: 5

PostPosted: Thu Feb 18, 2010 1:21 am    Post subject: Reply with quote

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 Laughing
Back to top
View user's profile Send private message
[VxE]



Joined: 07 Oct 2006
Posts: 3254
Location: Simi Valley, CA

PostPosted: Thu Feb 18, 2010 2:57 am    Post subject: Reply with quote

The built-in variable "A_Cursor" holds a brief description of the currently visible mouse cursor (with limitations).
_________________
Ternary (a ? b : c) guide     TSV Table Manipulation Library
Post code inside [code][/code] tags!
Back to top
View user's profile Send private message
damaskynos



Joined: 17 Feb 2010
Posts: 5

PostPosted: Thu Feb 18, 2010 12:26 pm    Post subject: Reply with quote

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
View user's profile Send private message
Jeremiah



Joined: 20 Apr 2009
Posts: 797
Location: North Dakota, USA

PostPosted: Thu Feb 18, 2010 2:04 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail MSN Messenger
closed



Joined: 07 Feb 2008
Posts: 509

PostPosted: Thu Feb 18, 2010 2:43 pm    Post subject: Reply with quote

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
View user's profile Send private message
Guest






PostPosted: Thu Feb 18, 2010 8:14 pm    Post subject: Reply with quote

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

PostPosted: Fri Feb 19, 2010 7:44 am    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group