Packagesekati.external
Classpublic class BrowserAddress

BrowserAddress provides basic deeplinking through URL anchor getters and setters.

While not as powerful or full-featured as BrowserManager or SWFAddress it is far easier to implement and support as there is no need to write back/forward code-jumps from all points in the site but only during initialization. The model:

  1. Check for anchor links during App initialization & respond with jump code when appropriate.
  2. Set links as the user drills down to key points in the site or application experience

See also

sekati.managers.BrowserManager


Public Properties
 PropertyDefined by
  anchor : String
[static] Returns value of the _anchor
BrowserAddress
  href : String
[static][read-only] Return the full Browser URL
BrowserAddress
  title : String
[static] Returns value of property
BrowserAddress
Protected Properties
 PropertyDefined by
  baseTitle : String = ""
[static]
BrowserAddress
  baseURL : String = ""
[static]
BrowserAddress
Public Methods
 MethodDefined by
  
BrowserAddress Static Constructor
BrowserAddress
  
back():void
[static] Move back in the browser history.
BrowserAddress
  
forward():void
[static] Move forward in the browser history.
BrowserAddress
Property detail
anchorproperty
anchor:String  [read-write]

Returns value of the _anchor

Implementation
    public static function get anchor():String
    public function set anchor(value:String):void
baseTitleproperty 
protected static var baseTitle:String = ""
baseURLproperty 
protected static var baseURL:String = ""
hrefproperty 
href:String  [read-only]

Return the full Browser URL

Implementation
    public static function get href():String
titleproperty 
title:String  [read-write]

Returns value of property

Implementation
    public static function get title():String
    public function set title(value:String):void
Constructor detail
BrowserAddress()constructor
public function BrowserAddress()

BrowserAddress Static Constructor

Method detail
back()method
public static function back():void

Move back in the browser history.

forward()method 
public static function forward():void

Move forward in the browser history.