Package | org.flowplayer.model |
Interface | public interface Pluggable |
Implementors | StyleableSprite |
Property | Defined by | ||
---|---|---|---|
defaultConfig : Object [read-only]
Gets the default configuration used for this plugin.
| Pluggable | ||
player : Flowplayer
[write-only]
Sets the Flowplayer API.
| Pluggable | ||
plugin : Plugin
[write-only]
Sets the plugin model.
| Pluggable |
defaultConfig | property |
defaultConfig:Object
[read-only]Gets the default configuration used for this plugin.
Implementation public function get defaultConfig():Object
player | property |
player:Flowplayer
[write-only]Sets the Flowplayer API. The interface is immediately ready to use, all other plugins have been loaded an initialized when this get called.
After this method has been called the plugin will be placed on the stage (on
player's Panel).
Implementation
public function set player(value:Flowplayer):void
plugin | property |
plugin:Plugin
[write-only]Sets the plugin model. This gets called before the plugin has been added to the display list and before the player is set.
Implementation public function set plugin(value:Plugin):void