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
.
__
> 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
--
___
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
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
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
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
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);
>
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.
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