Skip to content

Instantly share code, notes, and snippets.

@marchbold
Last active August 29, 2015 14:25
Show Gist options
  • Save marchbold/c63b97b3c0c747d15935 to your computer and use it in GitHub Desktop.
Save marchbold/c63b97b3c0c747d15935 to your computer and use it in GitHub Desktop.
Resizing a WebView
// 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
@marchbold
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment