This file contains 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
var nativeWeb:UIWebView = new UIWebView(); | |
nativeWeb.stage = stage; | |
nativeWeb.viewPort = new Rectangle(0, 0, 600, 400); | |
nativeWeb.loadAppBundleAsset('test.html'); |
This file contains 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
nativeWeb.loadDocumentAsset(); | |
nativeWeb.loadString(); | |
nativeWeb.loadURL(); |
This file contains 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
nativeWeb.addEventListener(UIWebViewEvent.FINISH_LOAD, onFinishLoad); | |
nativeWeb.addEventListener(UIWebViewEvent.LOCATION_CHANGE, onLocationChange); | |
nativeWeb.addEventListener(UIWebViewEvent.JS_TRIGGER_AS3, onJsTriggerAs); | |
nativeWeb.addEventListener(UIWebViewEvent.URL_SCHEME_TRIGGER, onUrlScheme); | |
This file contains 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
function triggerAS3(funcName, param){ | |
if(param){ | |
if(typeof param == "string") | |
window.location = 'as3:'+ funcName +':' + param; | |
else | |
window.location = 'as3:'+ funcName +':' + JSON.stringify(param); | |
}else{ | |
window.location = 'as3:'+ funcName; | |
} | |
} |
This file contains 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
//set as3 uri scheme, you can change the default behavior as3:functionName:params | |
nativeWeb.as3FuncUrlScheme = 'air'; //air:funcName:paramIfAny | |
nativeWeb.as3FuncUrlScheme = 'wooohooo'; //woohooo:funcName:paramIfAny |
This file contains 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
//if you want to handle mailto and skype scheme in your app | |
nativeWeb.urlSchemes = ["mailto", "skype"]; | |
nativeWeb.addEventListener(UIWebViewEvent.URL_SCHEME_TRIGGER, onUrlScheme); | |
function onUrlScheme(event:UIWebViewEvent):void | |
{ | |
//do something with it | |
//event.url = mailto:[email protected] | |
trace( 'URI scheme detected: ' + event.url ); | |
} |
This file contains 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
//img is a spark Image class in Flex | |
//capture full page content screen shot | |
img.source = nativeWeb.captureScreenShotAsByteArray(); | |
//capture current visible only | |
img.source = nativeWeb.captureScreenShotAsByteArray(true); | |
//capture full page content screen shot but return bitmap data | |
img.source = nativeWeb.captureScreenShotAsBitmapData(); | |
img.source = nativeWeb.captureScreenShotAsBitmapData(true); |
This file contains 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
nativeWeb.scrollBounceEffect = false; | |
nativeWeb.scrollable = false; | |
nativeWeb.zoomable = true; |
This file contains 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
//dispose this native web instead of setting it null | |
nativeWeb.dispose(); | |
//dispose all instance created, convenient if you need to destroy all. | |
UIWebView.disposeAll(); |
This file contains 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
//from AS3, call JS function named alertUserName | |
var obj:Object = {username: "superadmin"}; | |
nativeWeb.callJsFunc('alertUserName', obj); | |
//in Javascript | |
function alertUserName(obj){ | |
obj = JSON.parse(obj); | |
alert(obj.username); | |
} |
OlderNewer