sending a text with a key of the TAdvSmoothTouchKeyBoard

Hello,

i want to send more than on char with a key of the TAdvSmoothTouchKeyBoard.
But the key object don't have the property "KeyString". It send only the first char of the caption.
Is there a workaround?

At this moment, this wasn't possible.
We made an extension though to enable this via 2 new methods : PostKey(ch: char) and PostString(s: string);
With these 2 additional methods, you can post additional characters via the OnKeyClick event handler. For example:

procedure TForm1.AdvSmoothTouchKeyBoard1KeyClick(Sender: TObject;
  Index: Integer);
begin
  if index = 2 then
  begin
     AdvSmoothTouchKeyBoard1.PostString('abc');
  end;
end;

This will be in TMS VCL UI Pack 11.0.5.0 we aim to release next week.