One way that I found is to use the ExternalInterface class and use JavaScript like this:
| ExternalInterface.call("eval(window.document.title = 'New Title')"); | 
Obviously you'd want to escape any single quotes in the new title.
One other way I found to do this is using the BrowserManager(if you have it enabled):
| var browser:IBrowserManager = BrowserManager.getInstance(); | 
Hope this helps!
 
 

No comments:
Post a Comment