Packagecom.gaiaframework.api
Interfacepublic interface IBase extends flash.events.IEventDispatcher
SubinterfacesIPage, IPreloader

This is the interface of the base for IPage and IPreloader. It contains Gaia's four method conventions.



Public Methods
 MethodDefined by
  
transitionIn():void
Gaia calls this method on a page or preloader when it needs to transition in.
IBase
  
Pages call this method to let Gaia know when they are finished transitioning in.
IBase
  
Gaia calls this method on a page or preloader when it needs to transition out.
IBase
  
Pages and preloaders call this method to let Gaia know when they are finished transitioning out.
IBase
Events
 EventSummaryDefined by
   Dispatched when a page's transitionIn is called by Gaia.IBase
   Dispatched to Gaia when a page is finished transitioning in.IBase
   Dispatched when a page's transitionOut is called by Gaia.IBase
   Dispatched to Gaia when a page is finished transitioning out.IBase
Method detail
transitionIn()method
public function transitionIn():void

Gaia calls this method on a page or preloader when it needs to transition in.

transitionInComplete()method 
public function transitionInComplete():void

Pages call this method to let Gaia know when they are finished transitioning in.

transitionOut()method 
public function transitionOut():void

Gaia calls this method on a page or preloader when it needs to transition out.

transitionOutComplete()method 
public function transitionOutComplete():void

Pages and preloaders call this method to let Gaia know when they are finished transitioning out.

Event detail
transitionInevent 
Event object type: com.gaiaframework.events.PageEvent

Dispatched when a page's transitionIn is called by Gaia.

transitionInCompleteevent  
Event object type: com.gaiaframework.events.PageEvent

Dispatched to Gaia when a page is finished transitioning in.

transitionOutevent  
Event object type: com.gaiaframework.events.PageEvent

Dispatched when a page's transitionOut is called by Gaia.

transitionOutCompleteevent  
Event object type: com.gaiaframework.events.PageEvent

Dispatched to Gaia when a page is finished transitioning out.