Package | org.flowplayer.model |
Interface | public interface Plugin |
Subinterfaces | DisplayPluginModel |
Implementors | ProviderModel |
Method | Defined by | ||
---|---|---|---|
getDefaultConfig():Object
Gets the default configuration to be used for this plugin.
| Plugin | ||
onConfig(configProps:PluginModel):void
Provided plugins configuration properties.
| Plugin | ||
onLoad(player:Flowplayer):void
Called when the player has been initialized.
| Plugin |
getDefaultConfig | () | method |
public function getDefaultConfig():Object
Gets the default configuration to be used for this plugin. Called after onConfig() but before onLoad()
ReturnsObject — default configuration object, null if no defaults are available
|
onConfig | () | method |
public function onConfig(configProps:PluginModel):void
Provided plugins configuration properties. This happens when the plugin SWF has been loaded but before it is added to the display list.
ParametersconfigProps:PluginModel |
onLoad | () | method |
public function onLoad(player:Flowplayer):void
Called when the player has been initialized. The interface is immediately ready to use, all other plugins have been loaded and initialized when this gets called. After this method has been called the plugin will be placed on the stage (on player's Panel).
Parametersplayer:Flowplayer |