| Thank you! Yes, apps can control the webview through the IWebView interface: https://developer.vuplex.com/webview/IWebView In most cases, keyboard input is sent to a webview programmatically: https://support.vuplex.com/articles/keyboard So, to disable the keyboard, the app can just omit the Keyboard prefab from the scene and leave the WebViewPrefab.NativeOnScreenKeyboardEnabled option disabled (for mobile): - https://developer.vuplex.com/webview/Keyboard - https://developer.vuplex.com/webview/WebViewPrefab#NativeOnS... If you want to disable clicking and scrolling, you can set the WebViewPrefab's ClickingEnabled and ScrollingEnabled options to false: - https://developer.vuplex.com/webview/WebViewPrefab#ClickingE... - https://developer.vuplex.com/webview/WebViewPrefab#Scrolling... |