First: TMS Web Core ist great! Thanks to your team for this product.
I have a question about WebElementActionList. If I see it correctly, multi-touch queries are better to handle with the WebElementActionList. The mouse events have sporadic errors in the coordinate transmission with multi-touch.
However, I don't currently know how to get the coordinates of the touch event for TouchMove when I use WebElemntActionList.
I played around a bit with the event parameter in onExecute, but to no avail.
I had imagined something like this, but I think I'm doing something wrong or have misunderstood the event parameter
var
te:TJSTouchEvent;
begin
te:=TJSTouchEvent(event);
x:=t.touches.Touches[1].ScreenX;
Is there an example or more documentation somewhere on how to get the coordinates of the touch move?
I need this to build better controlbuttons for my little project. I usually build business applications. But you can't always just program databases, so I'm currently building a little Christmas jump'n'run game in my spare time with TMS Web Core.
It already runs quite well on Android (Pixel 8 Pro) and desktop, IPhone still has problems, but it seems to work. I'm still at the beginning.
Here you can see the current progress of the work:The Santa Game
It is designed as PWA, that works best if you use it with Android.
Greeting
Ralf