Packagecom.jeffdePascale.fosfr.prototypes
Classpublic class FosfrPrototype
InheritanceFosfrPrototype Inheritance flash.display.MovieClip
ImplementsIFosfr
SubclassesFosfrInitializeSWFPrototype, FosfrSWFPrototype

FosfrPrototype is the core prototype class for the Fosfr framework.



Public Methods
 MethodDefined by
  
FosfrPrototype
  
debug(str:*):void
provides a document class level shortcut to the fosfr.debug.update() method.
FosfrPrototype
  
init():void
Called automatically upon completion of the initialization process by Fosfr, this method should be overriden and used as the starting point for the SWF file.
FosfrPrototype
  
track(tag:String, forceMethod:String = null, ... args):void
provides a document class level shortcut to the fosfr.tracking.track() method.
FosfrPrototype
Constructor detail
FosfrPrototype()constructor
public function FosfrPrototype()
Method detail
debug()method
public function debug(str:*):void

provides a document class level shortcut to the fosfr.debug.update() method.

Parameters
str:* — a value to send, converted to string data by Debug

See also

init()method 
public function init():void

Called automatically upon completion of the initialization process by Fosfr, this method should be overriden and used as the starting point for the SWF file.

track()method 
public function track(tag:String, forceMethod:String = null, ... args):void

provides a document class level shortcut to the fosfr.tracking.track() method.

Parameters
tag:String — a value to send to the track method of the Tracking class.
 
forceMethod:String (default = null) — args If applicable, optional parameters to send along with the tag, depending on the tracking method implemented.
 
... args

See also