Last active
August 29, 2015 14:25
-
-
Save marchbold/c63b97b3c0c747d15935 to your computer and use it in GitHub Desktop.
Resizing a WebView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Here we assume you have previously initialised the extension | |
var webView:WebView = NativeWebView.service.createWebView( new Rectangle( 0, 0, 400, 600 ) ) ; | |
webView.width = 500; | |
webView.height = 800; | |
webView.x = 10; | |
webView.y = 100; | |
// com.distriqt.NativeWebView |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://airnativeextensions.com/extension/com.distriqt.NativeWebView