Last active
August 29, 2015 14:25
-
-
Save marchbold/086e08c163c79511d765 to your computer and use it in GitHub Desktop.
Capture the WebView as BitmapData
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 created a webView and loaded some content | |
var bd:BitmapData = new BitmapData( webView.width, webView.height ); | |
webView.drawViewPortToBitmapData( bd ); | |
// 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