Home
Download
Screenshots

Wiki
Plugins
Translations
Developers
Donate

Forums/Help
Contact Us

StrokeIt

Sending Mouse Clicks

Posted by Jordan 
Jordan
Sending Mouse Clicks
November 28, 2003 08:54AM
We can use right mouse button to copy and paste text in a command console window, however, i just failed to find a command to send mouse button clicks in [Keys - Send keystrokes].

If so, i can define an action:
[RightMouseClick][ESC]cd "[RightMouseClick]"[Enter]
to perform
1, Copy selected text in command console
2, Clear the current command prompt,
3, Type 'cd "'
4, Paste what is copied in step1,
5, Type '"', and then Enter
6, CHDir to selected text.

It will be a great feature...

In Internet Explorer,
[RightMouseClick]R
Can be used to Refresh active Frame in a frameset.
(Of course, this can be done currently by replacing [RightMouseClick] to [RWIN]. But no workaround is there in Command Console Windows.)
Jordan
Re: Sending Mouse Clicks
November 28, 2003 08:55AM
Oops, not [RWIN], should be [APPS].
Scott
Re: Sending Mouse Clicks
November 28, 2003 03:39PM
You can't send mouse clicks.
Jordan
Re: Sending Mouse Clicks
December 01, 2003 09:41PM
woeeeeee, too bad
Noah
Re: Sending Mouse Clicks
December 20, 2003 08:27PM
I'd like to see support for it though
Jordan
Re: Sending Mouse Clicks
December 21, 2003 06:57AM
Great!!

I am now having another one on my side :D... and i hope that it won't be too tough to implement.

Jeff's StrokeIt has not been updated for long. Hope that he will release something in next year's spring.
Tal
Re: Sending Mouse Clicks
April 12, 2004 02:53PM
Just like to add my name to the list of people who would greatly appriciate having a way of sending mose clicks to an application.

In another thread I noticed people requesting StrokeIt to implement the click at the begining of the stroke. I would be very happy with a click at the end of the stroke. Anywhere, for that matter. I just believe it should be easier to implement at the end of the stroke, instead of remembering the XY of the begining. When the stroke ends, and the commands start to run, one of them could be [LeftMouseButton_DOWN][LeftMouseButton_UP].

Thanks.
Jordan
Re: Sending Mouse Clicks
April 14, 2004 10:22AM
Woe..... it is April now...... the spring is passing away... but no StrokeIt updates ~_~.
Tal
Re: Sending Mouse Clicks
May 20, 2004 08:36AM
I just found an shareware application that allows you to control the mouse using the keyboard (including button clicks): Key Mouse Genie @ [url=http://www.vsisystems.com/keyboardmouse.htm.]http://www.vsisystems.com/keyboardmouse.htm.[/url] I have no affiliation with them, I just thought the app. would be useful for those who need it.

If it is crucial for you, then the $10 are well worth it, although getting stroke-it to do the mouse click is a bit tricky... Basically you have to figure out the proper keystrokes for what you have in mind (including enabling and disabling the app. before sending them).
pi
Re: Sending Mouse Clicks
May 22, 2004 06:44AM
powerpro send mouseclicks and much more (and its free):
[url=http://www.windowspowerpro.com]http://www.windowspowerpro.com[/url]
l0dy
Re: Sending Mouse Clicks
May 28, 2004 11:10AM
Another one in the queue, waiting for support of mouseclicks. Would be a great addition.

Cheers,
Stephan
Jordan
Re: Sending Mouse Clicks
May 31, 2004 12:10AM
Yep, having one StrokeIt here is quite enough for me.
No need to get one more powerpro running there. Thus
I still hope StrokeIt will support sending mouse clicks.
Tom
Re: Sending Mouse Clicks
June 23, 2004 04:14PM
Sending Mouse Clicks will be really great, that will allow me using my Middle Mouse Button for different actions depending on the program... (Like double left click, single middle click or single right click with the same button being clicked!!!)
Add me to the list!
Jordan
Re: Sending Mouse Clicks
June 25, 2004 07:32AM
Muahaaahaaa... One more has come into this list!

Hello Tom,
Since usually pressing the Enter key on the keyboard = double clicking the mouse, I have defined Down-Left as the Enter key in my global actions list(yep, as it was drawn on the keyboard). Thus, I usually use Down-Left to "double click" something.

However, other clicking actions has no keyboard equivalence :(
Kenny Dog
Re: Sending Mouse Clicks
August 12, 2004 02:47PM
SHIFT - F10 = right click!
Chaendler
Re: Sending Mouse Clicks
August 16, 2004 03:02PM
Left click would be suppish!
Waiting for that update :)
Jordan
Re: Sending Mouse Clicks
August 21, 2004 12:12AM
Nope, Shift+F10 does not work in the Command Console window.
----------------
Author: Kenny Dog (---.biz.rr.com)
Date: 08-12-04 15:47

SHIFT - F10 = right click!
vorchatwo
Re: Sending Mouse Clicks
January 03, 2005 01:30PM
Shift - F10 Is difficult to get to work with stroke it, the user needs to remember to activate the item they want to use the sh-F10 on. In I.E. I found that it only will work if you middle click on the link (this puts a dotted line box around it) to activate it. If you dont activate it you'll only get the usual right click context pop-up.
Also, if youre looking at a pic and middle click on it to activate it, you may on see the "box" around it as above. And It only (sh-F10) seems to work by middle-clicking first. At least this is what Ive found happens in I.E.
I've also noticed that I dont get near as many options with the "activate, sh-F10" either. Can't seem to figure it out.
Jordan
Re: Sending Mouse Clicks
January 14, 2005 01:47AM
Well, since the Up-Left bug has been fixed in .9.5 preview.

This, sending mouse clicks, is my last remaining wish.
adnap
Re: Sending Mouse Clicks
April 17, 2005 02:41PM
As Andreas (---.dip0.t-ipconnect.de) enlightened me you can post any window message by using its numerical value and CaptnBlack (---.r12.ncbldw.infoave.net) told me about this site

[url=http://www.autohotkey.com/docs/misc/SendMessageList.htm]http://www.autohotkey.com/docs/misc/SendMessageList.htm[/url]

it is clear that StrokeIt CAN send mouseclix by posting window message using the following window message values.
eg. A WM_LBUTTONDOWN (0x201) followed by a WM_LBUTTONUP (0x202) is a left click.

See the rest:
0x200WM_MOUSEFIRST
0x200WM_MOUSEMOVE
0x201WM_LBUTTONDOWN
0x202WM_LBUTTONUP
0x203WM_LBUTTONDBLCLK
0x204WM_RBUTTONDOWN
0x205WM_RBUTTONUP
0x206WM_RBUTTONDBLCLK
0x207WM_MBUTTONDOWN
0x208WM_MBUTTONUP
0x209WM_MBUTTONDBLCLK
0x20AWM_MOUSELAST
0x20A WM_MOUSEWHEEL
Zach
Re: Sending Mouse Clicks
March 31, 2007 06:16PM
adnap Wrote:
-------------------------------------------------------
> As Andreas (---.dip0.t-ipconnect.de) enlightened
> me you can post any window message by using its
> numerical value and CaptnBlack
> (---.r12.ncbldw.infoave.net) told me about this
> site
>
> http://www.autohotkey.com/docs/misc/SendMessageLis
> t.htm
>
> it is clear that StrokeIt CAN send mouseclix by
> posting window message using the following window
> message values.
> eg. A <b style="color:black;background-color:#a0ffff">WM_LBUTTONDOWN</b> (0x201) followed by a
> WM_LBUTTONUP (0x202) is a left click.
>
> See the rest:
> 0x200WM_MOUSEFIRST
> 0x200WM_MOUSEMOVE
> 0x201WM_LBUTTONDOWN
> 0x202WM_LBUTTONUP
> 0x203WM_LBUTTONDBLCLK
> 0x204WM_RBUTTONDOWN
> 0x205WM_RBUTTONUP
> 0x206WM_RBUTTONDBLCLK
> 0x207WM_MBUTTONDOWN
> 0x208WM_MBUTTONUP
> 0x209WM_MBUTTONDBLCLK
> 0x20AWM_MOUSELAST
> 0x20A WM_MOUSEWHEEL


Can anyone confirm that the above post works.....I couldn't get it to work properly to do Left Clicks or any others...
kid
Re: Sending Mouse Clicks
April 19, 2007 10:03AM
the ritht link is,

http://www.autohotkey.com/docs/misc/SendMessageList.htm

but nothing happened.

How could you do that?
Author:

Your Email:


Subject:


Spam prevention:
Please, solve the mathematical question and enter the answer in the input field below. This is for blocking bots that try to post this form automatically.
Question: how much is 16 plus 15?
Message: