Communicating from the HTMLViewer web page to the Xojo app

Hi

If I display a checkbox within a webpage, which itself is displayed in an HTMLViewer in a Xojo-compiled app, is there any way for the Xojo app to detect the current state of that checkbox?

I am interested in a solution which can work on Mac OS X and Windows.

Thanks

You can assign things to document.status, I think and get the StatusChanged event called.

Thanks Christian.

In my tests using Win 8.1, assigning to document.status in javascript did not fire the StatusChanged event. However, assigning to Document.title and receiving the events in TitleChanged did work, which will be sufficient because the app I am planning does not need to use a window title for the web page.