You can use the BrowserManager's setTitle() method to set the title in your HTML wrapper. This shows up as the name of the web page in the title bar of the browser. When you first initialize the BrowserManager, you set the value of the title in the second parameter to the init() method.
The following example sets the initial value of the title to "Welcome". It then changes the title depending on the name and hometown that you enter in the TextInput fields.
<?xml version="1.0" encoding="utf-8"?> <!-- deeplinking/TitleManipulationExample.mxml --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" historyManagementEnabled="false" creationComplete="init();" > <mx:Script> <![CDATA[ import mx.managers.BrowserManager; import mx.managers.IBrowserManager; import mx.events.BrowserChangeEvent; private var bm:IBrowserManager; private function init():void { bm = BrowserManager.getInstance(); bm.init("", "Welcome!"); } public function updateTitle(e:Event):void { bm.setTitle("Welcome " + ti1.text + " from " + ti2.text + "!"); } ]]> </mx:Script> <mx:Form> <mx:FormItem label="Name:"> <mx:TextInput id="ti1"/> </mx:FormItem> <mx:FormItem label="Hometown:"> <mx:TextInput id="ti2"/> </mx:FormItem> <mx:Button id="b1" click="updateTitle(event)" label="Submit"/> </mx:Form> </mx:Application>