Package | com.brightcove.api |
Class | public class CustomModule |
Inheritance | CustomModule ![]() |
Property | Defined By | ||
---|---|---|---|
player : BrightcoveModuleWrapper [read-only]
Returns a reference to the BrightcoveModuleWrapper class that wraps the player API interface. | CustomModule |
Method | Defined By | ||
---|---|---|---|
setInterface(player:IEventDispatcher):void
The method called by the Brightcove player to establish a link between the player and the custom module. | CustomModule |
Method | Defined By | ||
---|---|---|---|
initialize():void
This method is called once the player is ready for interaction. | CustomModule |
player | property |
player:BrightcoveModuleWrapper
[read-only] Returns a reference to the BrightcoveModuleWrapper class that wraps the player API interface.
public function get player():BrightcoveModuleWrapper
initialize | () | method |
protected function initialize():void
This method is called once the player is ready for interaction. You must override this method in the child class.
setInterface | () | method |
public function setInterface(player:IEventDispatcher):void
The method called by the Brightcove player to establish a link between the player and the custom module. There should be no need to manually call or to override this method. See the article, Creating Custom Player Controls for a code example of this method.
Parameters
player:IEventDispatcher — player interface through which all of the Brightcove player API is accessed.
|