| Package | com.jeffdePascale.fosfr.prototypes |
| Class | public class FosfrPrototype |
| Inheritance | FosfrPrototype flash.display.MovieClip |
| Implements | IFosfr |
| Subclasses | FosfrInitializeSWFPrototype, FosfrSWFPrototype |
FosfrPrototype is the core prototype class for the Fosfr framework.
| Method | Defined 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 | ||
| FosfrPrototype | () | constructor |
public function FosfrPrototype()
| debug | () | method |
public function debug(str:*):void
provides a document class level shortcut to the fosfr.debug.update() method.
str:* — a value to send, converted to string data by Debug
|
See also
| init | () | method |
public function init():voidCalled 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.
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