Use BrowserManager : BrowserManager « Development « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Development » BrowserManager 




Use BrowserManager
Use BrowserManager
         

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="parseURL()">
    <mx:Script>
        
            import mx.utils.ObjectUtil;
            import mx.managers.IBrowserManager;
            import mx.managers.BrowserManager;
            import mx.utils.URLUtil;

            private function parseURL() void
            {
                var bm:IBrowserManager = BrowserManager.getInstance();
                bm.init();

                output.text += "Full URL" + bm.url + " Base URL:" + bm.base + "\n";
                output.text += "URL Fragment:" + bm.fragment + "\n";

            }

      
    </mx:Script>

    <mx:TextArea id="output" left="10" top="10" bottom="10" right="10"/>

</mx:Application>

   
    
    
    
    
    
    
    
    
  














Related examples in the same category
1.Update URL with BrowserManagerUpdate URL with BrowserManager
2.Using URLUtil and BrowserManager to get information about the URL that was used to return the application.Using URLUtil and BrowserManager to get information about the URL that was used to return the application.
3.Set Browser titleSet Browser title
4.Pass URL Parameters As FragmentsPass URL Parameters As Fragments
5.URL Change LoggerURL Change Logger
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.