@Wookie,
thank you very much by help and code example, i concluded that:
My approach above is right and unfortunately until this moment was saw that, not is possible achieve this goal using
AccessibilityService, because exists
limitation on storage of gestures,
here is the official reference:
Code:
addStroke(new GestureDescription.StrokeDescription(path, 0, time));
And also, until now (in this case)
AccessibilityService not is able to perform a gesture of touch "
only press and not loose" in some point (of 9 points that compose the password screen) when 2 fast mouse clicks are perform and sent on:
Delphi-Quellcode:
procedure TForm2.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
before start and during drawing the password (dragging mouse), and release only when password be drawn completely and:
Delphi-Quellcode:
procedure TForm2.Image1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
be sent to remote device.
---------------------------------------------------------------------------------------------------------------------------------------
Note: Team View QuickSupport is able to this because use
code of root gave to he by several vendors.