Re: [Lazarus] TMouseinput mouse click.

2016-10-29 Thread Larry Dalton via Lazarus
That helps a lot! Thanks to all of you! Sent from my iPhone > On Oct 29, 2016, at 10:17, Vojtěch Čihák via Lazarus > wrote: > > Hi, this works. Just check all methods available in KeyInput and MouseInput > to see what it can really do. > > KeyInput.Apply([ssShift]); > KeyInput.Press(VK_

Re: [Lazarus] VK_* problem.

2016-10-29 Thread Larry Dalton via Lazarus
Thanks! Sent from my iPhone > On Oct 29, 2016, at 10:18, silvioprog via Lazarus > wrote: > >> On Sat, Oct 29, 2016 at 11:59 AM, Balázs Székely via Lazarus >> wrote: >> KeyInput.Down(VK_SHIFT); >> KeyInput.Press(VK_L); >> KeyInput.Up(VK_SHIFT); >> //... > > > It allows you to send s

Re: [Lazarus] VK_* problem.

2016-10-29 Thread silvioprog via Lazarus
On Sat, Oct 29, 2016 at 11:59 AM, Balázs Székely via Lazarus < lazarus@lists.lazarus-ide.org> wrote: > KeyInput.Down(VK_SHIFT); > KeyInput.Press(VK_L); > KeyInput.Up(VK_SHIFT); > //... It allows you to send string too, eg: KeyInput.Press('hello WORLD'); -- Silvio Clécio -- __

Re: [Lazarus] TMouseinput mouse click.

2016-10-29 Thread Vojtěch Čihák via Lazarus
Hi, this works. Just check all methods available in KeyInput and MouseInput to see what it can really do.     KeyInput.Apply([ssShift]);   KeyInput.Press(VK_T);   KeyInput.Unapply([ssShift]);   KeyInput.Press(VK_e);   KeyInput.Press(VK_s);   KeyInput.Press(VK_t);     V. ___

Re: [Lazarus] VK_* problem.

2016-10-29 Thread Balázs Székely via Lazarus
KeyInput.Down(VK_SHIFT); KeyInput.Press(VK_L); KeyInput.Up(VK_SHIFT); //... -- View this message in context: http://free-pascal-lazarus.989080.n3.nabble.com/Lazarus-VK-problem-tp4050119p4050121.html Sent from the Free Pascal - Lazarus mailing list archive at Nabble.com. -- ___

Re: [Lazarus] VK_* problem.

2016-10-29 Thread Larry Dalton via Lazarus
I need to correct the previous email. The line 'The resulting string is 'al'' should not be there. On Sat, Oct 29, 2016 at 9:24 AM, Larry Dalton wrote: > I have an application that requires MouseAndKeyInput.lpk. I am using > lazarus_1.6-0_amd64.deb, fpc-src_3.0.0-151205_amd64.deb, on Linux > Cin

[Lazarus] VK_* problem.

2016-10-29 Thread Larry Dalton via Lazarus
I have an application that requires MouseAndKeyInput.lpk. I am using lazarus_1.6-0_amd64.deb, fpc-src_3.0.0-151205_amd64.deb, on Linux Cinnamon. I also am using it on Windows 7, and Windows 10. I need to print strings at a certain position on a webpage. I can't get it to print uppercase letters. He

Re: [Lazarus] TMouseinput mouse click.

2016-10-29 Thread Larry Dalton via Lazarus
I can't get it to print an uppercase letter Sent from my iPhone On Oct 28, 2016, at 01:24, Balázs Székely via Lazarus wrote: >>> Is there a procedure to print a string at the cursor? > > uses MouseAndKeyInput, LCLType; > > procedure TForm1.Button1Click(Sender: TObject); > var > Str: String;

Re: [Lazarus] Linking error to lazarus components

2016-10-29 Thread Larry Dalton via Lazarus
Thanks! It worked. Sent from my iPhone > On Oct 29, 2016, at 04:41, Mattias Gaertner via Lazarus > wrote: > > On Sat, 29 Oct 2016 00:07:00 -0500 > Larry Dalton via Lazarus wrote: > >> I have an application that requires MouseAndKeyInput.lpk. I am using >> lazarus_1.6-0_amd64.deb, fpc-src_3.0

Re: [Lazarus] Linking error to lazarus components

2016-10-29 Thread Mattias Gaertner via Lazarus
On Sat, 29 Oct 2016 00:07:00 -0500 Larry Dalton via Lazarus wrote: > I have an application that requires MouseAndKeyInput.lpk. I am using > lazarus_1.6-0_amd64.deb, fpc-src_3.0.0-151205_amd64.deb, on Linux Cinnamon. > I also am using it on Windows 7, and Windows 10. It works great on the > Windo

Re: [Lazarus] Run FPC on Raspberry Pi3 in command line mode

2016-10-29 Thread wkitty42--- via Lazarus
On 10/29/2016 01:23 AM, Ken Kashmarek via Lazarus wrote: I have been runing FPC v3 on Windows 7 from a command line window. The Windows 7 version of the IDE sucks. I want to run FPC v3 on my Raspberry Pi3 the same way, from a command line window (not the GUI IDE interface). Is that possible?