I’m thinking about upgrade my 2018 xojo to latest version.
So i did download the latest version to be familiar with.
(web app)
One of the most anoying thing i’m not finding, is some events: mouse enter, mouse exit, mouse up, mouse down(weblabel)… double click (weblistbox), and so on.
I don’t think they have been added to Web 2.0 yet, I’m sure I read something in one of these posts about it.
If your app is working fine on Web 1.0 / Xojo 2018 and you don’t need any of the Web 2.0 features it may be worth waiting for the next release.
I’d like to point out that the reason we left many of these out is because of the bandwidth and processing burden associated with them.
MouseUp and MouseDown are now called Pressed because realistically by the time your code runs, the event has already happened and you can’t do anything about it. DoubleClick is now called DoublePressed.
What do you want to do with mouse enter/exit? Maybe Tim’s webkit can help if you need to do something server-side or maybe Anthony has something that can be browser-side.