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

This is the interface implemented by Preloaders in Gaia.

See also

Preloader Documentation


Public Methods
 MethodDefined by
  
onProgress(event:AssetEvent):void
This event listener receives the AssetEvent dispatched from Gaia when a branch or on-demand assets are loaded.
IPreloader
 Inherited
transitionIn():void
Gaia calls this method on a page or preloader when it needs to transition in.
IBase
 Inherited
Pages call this method to let Gaia know when they are finished transitioning in.
IBase
 Inherited
Gaia calls this method on a page or preloader when it needs to transition out.
IBase
 Inherited
Pages and preloaders call this method to let Gaia know when they are finished transitioning out.
IBase
Events
 EventSummaryDefined by
 Inherited Dispatched when a page's transitionIn is called by Gaia.IBase
 Inherited Dispatched to Gaia when a page is finished transitioning in.IBase
 Inherited Dispatched when a page's transitionOut is called by Gaia.IBase
 Inherited Dispatched to Gaia when a page is finished transitioning out.IBase
Method detail
onProgress()method
public function onProgress(event:AssetEvent):void

This event listener receives the AssetEvent dispatched from Gaia when a branch or on-demand assets are loaded.

Parameters
event:AssetEvent — AssetEvent contains progress information.

See also