From within your application, you can open a link using the device’s
native browser, just like with a traditional, browser-based Flex
application. The URLRequest class accomplishes this.
The URLRequest class accomplishes this. Let’s take a
look at the following code. Simply creating a new
URLRequest and passing it into the
navigateToURL method will invoke the user’s browser to
handle the request. Figure 1 shows the
sample application running.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Script>
<![CDATA[
protected function sendIt_clickHandler(event:MouseEvent):void
{
var s:String = "";
s+= address.text;
navigateToURL(new URLRequest(s));
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Label text="URL" top="40" left="50"/>
<s:TextInput id="address" top="30" left="160" text="http://www.happytoad.com"
width="250"/>
<s:Button id="sendIt" label="Open" click="sendIt_clickHandler(event)" top="110"
left="160"/>
</s:Application>