I\'d like people to have the ability to launch a Native AIR app via URL. My AIR app would read some parameters on it and open to the correct state.
So the use case w
Register BrowserInvokeEvent on completion, NativeApplication.nativeApplication.addEventListener(BrowserInvokeEvent.BROWSER_INVOKE,onBrowserInvoke);
then define,
protected function onBrowserInvoke(event:BrowserInvokeEvent):void { arguments = event.arguments; }