Pacotemx.managers
Interfacepublic interface IBrowserManager extends IEventDispatcher

The interface that the shared instance of the BrowserManager implements. Applications listen for events, call methods, and access properties on the shared instance which is accessed with the BrowserManager.getInstance() method.

Veja também

mx.managers.BrowserManager


Propriedades Públicas
 PropriedadeDefinido por
  base : String
[read-only] The portion of current URL before the '#' as it appears in the browser address bar.
IBrowserManager
  fragment : String
[read-only] The portion of current URL after the '#' as it appears in the browser address bar.
IBrowserManager
  title : String
[read-only] The title of the application as it should appear in the browser history.
IBrowserManager
  url : String
[read-only] The current URL as it appears in the browser address bar.
IBrowserManager
Métodos Públicos
 MétodoDefinido por
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
IEventDispatcher
 Inherited
Dispatches an event into the event flow.
IEventDispatcher
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
IEventDispatcher
  
init(value:String = null, title:String = null):void
Initializes the BrowserManager.
IBrowserManager
  
Initializes the BrowserManager.
IBrowserManager
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
IEventDispatcher
  
Changes the fragment of the URL after the '#' in the browser.
IBrowserManager
  
Changes the text in the browser's title bar.
IBrowserManager
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
IEventDispatcher
Eventos
 Evento Descrição Definido por
   Dispatched when the URL is changed by the browser.IBrowserManager
   Dispatched when the URL is changed either by the user interacting with the browser, invoking an application in AIR, or by setting the property programmatically.IBrowserManager
   Dispatched when the URL is changed by the application with the setUrl() method.IBrowserManager
Detalhes da propriedade
basepropriedade
base:String  [read-only]

The portion of current URL before the '#' as it appears in the browser address bar.


Implementação
    public function get base():String
fragmentpropriedade 
fragment:String  [read-only]

The portion of current URL after the '#' as it appears in the browser address bar. Use the setURLFragment() method to change this value.


Implementação
    public function get fragment():String
titlepropriedade 
title:String  [read-only]

The title of the application as it should appear in the browser history.


Implementação
    public function get title():String
urlpropriedade 
url:String  [read-only]

The current URL as it appears in the browser address bar.


Implementação
    public function get url():String
Detalhes do método
init()método
public function init(value:String = null, title:String = null):void

Initializes the BrowserManager. The BrowserManager will get the initial URL. If it has a fragment, it will dispatch a BROWSER_URL_CHANGE event. This method sets the value of the Application.application.historyManagementEnabled property to false because the HistoryManager generally interferes with your application's handling of URL fragments.

Parâmetros

value:String (default = null) — The fragment to use if no fragment is in the initial URL.
 
title:String (default = null) — The title to use if no fragment is in the initial URL.

initForHistoryManager()método 
public function initForHistoryManager():void

Initializes the BrowserManager. The HistoryManager calls this method to prepare the BrowserManager for further calls from the HistoryManager. You cannot use the HistoryManager and call the setFragment() method from the application. As a result, the init() method usually sets the value of the Application.application.historyManagementEnabled property to false to disable the HistoryManager.

setFragment()método 
public function setFragment(value:String):void

Changes the fragment of the URL after the '#' in the browser. An attempt will be made to track this URL in the browser's history.

If the title is set, the old title in the browser is replaced by the new title.

To store the URL, a JavaScript method named setBrowserURL() will be called. The application's HTML wrapper must have that method which must implement a mechanism for taking this value and registering it with the browser's history scheme and address bar.

When set, the APPLICATION_URL_CHANGE event is dispatched. If the event is cancelled, the setBrowserURL() method will not be called.

Parâmetros

value:String

setTitle()método 
public function setTitle(value:String):void

Changes the text in the browser's title bar. This method does not affect the browser's history.

Parâmetros

value:String

Detalhes do evento
browserURLChange Evento
Event Object Type: mx.events.BrowserChangeEvent
BrowserChangeEvent.type property = mx.events.BrowserChangeEvent.BROWSER_URL_CHANGE

Dispatched when the URL is changed by the browser.

The BrowserChangeEvent.BROWSER_URL_CHANGE constant defines the value of the type property of the event object for a browserURLChange event.

The properties of the event object have the following values:

PropriedadeValor
bubblesfalse
cancelablefalse
currentTargetThe Object that defines the event listener that handles the event. For exemplo, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
lastURLThe previous value of the BrowserManager's url property.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
urlThe new value of the BrowserManager's url property.
change Evento  
Event Object Type: flash.events.Event
Event.type property = flash.events.CHANGE

Dispatched when the URL is changed either by the user interacting with the browser, invoking an application in AIR, or by setting the property programmatically.

urlChange Evento  
Event Object Type: mx.events.BrowserChangeEvent
BrowserChangeEvent.type property = mx.events.BrowserChangeEvent.URL_CHANGE

Dispatched when the URL is changed by the application with the setUrl() method.

The BrowserChangeEvent.URL_CHANGE constant defines the value of the type property of the event object for a urlChange event.

The properties of the event object have the following values:

PropriedadeValor
bubblesfalse
cancelablefalse
currentTargetThe Object that defines the event listener that handles the event. For exemplo, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
lastURLThe previous value of the BrowserManager's url property.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
urlThe new value of the BrowserManager's url property.