Re: [Lazarus] TMouseinput mouse click.

2016-10-29 Thread Larry Dalton via Lazarus
s mailing list >> Datum: 29.10.2016 15:44 >> Předmět: Re: [Lazarus] TMouseinput mouse click. >> > I can't get it to print an uppercase letter > -- > ___ > Lazarus

Re: [Lazarus] TMouseinput mouse click.

2016-10-29 Thread Vojtěch Čihák via Lazarus
. __ > Od: Larry Dalton via Lazarus > Komu: Lazarus mailing list > Datum: 29.10.2016 15:44 > Předmět: Re: [Lazarus] TMouseinput mouse click. > I can't get it to print an uppercase letter -- ___

Re: [Lazarus] TMouseinput mouse click.

2016-10-29 Thread Larry Dalton via Lazarus
in context: > http://free-pascal-lazarus.989080.n3.nabble.com/Lazarus-TMouseinput-mouse-click-tp4050096p4050105.html > Sent from the Free Pascal - Lazarus mailing list archive at Nabble.com. > -- > ___ > Lazarus mailin

Re: [Lazarus] TMouseinput mouse click.

2016-10-28 Thread Larry Dalton via Lazarus
w this message in context: > http://free-pascal-lazarus.989080.n3.nabble.com/Lazarus-TMouseinput-mouse-click-tp4050096p4050105.html > Sent from the Free Pascal - Lazarus mailing list archive at Nabble.com. > -- > ___ > Lazarus mailing lis

Re: [Lazarus] TMouseinput mouse click.

2016-10-27 Thread Balázs Székely via Lazarus
s(VK_e); KeyInput.Press(VK_s); KeyInput.Press(VK_t); end; -- View this message in context: http://free-pascal-lazarus.989080.n3.nabble.com/Lazarus-TMouseinput-mouse-click-tp4050096p4050105.html Sent from the Free Pascal - Lazarus mailing list archive at Nabb

Re: [Lazarus] TMouseinput mouse click.

2016-10-27 Thread Larry Dalton via Lazarus
Is there a procedure to print a string at the cursor? Sent from my iPhone > On Oct 27, 2016, at 07:34, Balázs Székely via Lazarus > wrote: > > Add lazmouseandkeyinput to the required packages, then: > > uses MouseAndKeyInput; > > procedure TForm1.Button1Click(Sender: TObject); > begin > Mo

Re: [Lazarus] TMouseinput mouse click.

2016-10-27 Thread Larry Dalton via Lazarus
Worked great! Thanks! Sent from my iPhone > On Oct 27, 2016, at 07:34, Balázs Székely via Lazarus > wrote: > > Add lazmouseandkeyinput to the required packages, then: > > uses MouseAndKeyInput; > > procedure TForm1.Button1Click(Sender: TObject); > begin > MouseInput.Move([], 200, 75); >

Re: [Lazarus] TMouseinput mouse click.

2016-10-27 Thread Balázs Székely via Lazarus
Add lazmouseandkeyinput to the required packages, then: uses MouseAndKeyInput; procedure TForm1.Button1Click(Sender: TObject); begin MouseInput.Move([], 200, 75); MouseInput.Click(mbLeft,[], 200, 75); end; On Wed, Oct 26, 2016 at 6:40 PM, Larry Dalton via Lazarus < lazarus@lists.lazarus-ide.

[Lazarus] TMouseinput mouse click.

2016-10-26 Thread Larry Dalton via Lazarus
I am running Lazarus 1.6 on Windows 7. I have one application where I need to move the mouse to a certain point on the screen and then do a mouseclick from the program. When I run the following procedure, procedure TMain_Form.Button1Click(Sender: TObject); var MousePos:Tpoint; MyMouse:TMouseInput