tuarua / WebViewANE

WebView Adobe Air Native Extension for macOS 10.10+, Windows Desktop, iOS 9.0+ and Android 19+. This ANE provides access to a more modern webview from AIR.
Apache License 2.0
183 stars 53 forks source link

Page load complete event? #140

Closed jasonJamEther closed 6 years ago

jasonJamEther commented 6 years ago

I am looking in the documentation and examples and trying to find a page load complete event. Is there one? Is there a way to know when the page I am loading is complete? Sorry if there is an obvious answer to this that I missed.

tuarua commented 6 years ago

https://github.com/tuarua/WebViewANE/blob/b37f6dfb463a8f71d9714acfd6123278dedfabb9/example-desktop-complete/src/WebViewANESample.as#L411 You listen for isLoading propertyChange When event.params.value changes from true to false

jasonJamEther commented 6 years ago

great thank you. I will use that.