| Package | org.openvideoplayer.plugins |
| Interface | public interface IOvpPlugIn |
| Property | Defined By | ||
|---|---|---|---|
| ovpPlugInCoreVersion : String [read-only]
Should return the OVP version the plug-in was built against. | IOvpPlugIn | ||
| ovpPlugInDescription : String [read-only]
Should return a human readable description of the plug-in. | IOvpPlugIn | ||
| ovpPlugInName : String [read-only]
Should return the human readable name for the plug-in. | IOvpPlugIn | ||
| ovpPlugInTracingOn : Boolean
Tells the plug-in to turn on/off tracing. | IOvpPlugIn | ||
| ovpPlugInVersion : String [read-only]
Should return the version of the plug-in. | IOvpPlugIn | ||
| Method | Defined By | ||
|---|---|---|---|
initOvpPlugIn(player:IOvpPlayer):void
Called from the player. | IOvpPlugIn | ||
| ovpPlugInCoreVersion | property |
ovpPlugInCoreVersion:String [read-only] Should return the OVP version the plug-in was built against.
public function get ovpPlugInCoreVersion():String| ovpPlugInDescription | property |
ovpPlugInDescription:String [read-only] Should return a human readable description of the plug-in.
public function get ovpPlugInDescription():String| ovpPlugInName | property |
ovpPlugInName:String [read-only] Should return the human readable name for the plug-in.
public function get ovpPlugInName():String| ovpPlugInTracingOn | property |
ovpPlugInTracingOn:BooleanTells the plug-in to turn on/off tracing.
public function get ovpPlugInTracingOn():Boolean public function set ovpPlugInTracingOn(value:Boolean):void| ovpPlugInVersion | property |
ovpPlugInVersion:String [read-only] Should return the version of the plug-in. Note this is independent from the property below and allows a plug-in to version itself independent of the OVP core version it is built against.
public function get ovpPlugInVersion():String| initOvpPlugIn | () | method |
public function initOvpPlugIn(player:IOvpPlayer):voidCalled from the player. Allows a plug-in to call properties, methods, and listen for events coming from the player.
Parameters
player:IOvpPlayer |
See also