|
#1
|
|||
|
|||
|
I have been trying and trying to get rid of the play button using the chromeless player "http://cdn.livestream.com/chromelessPlayer/v21/playerapi.swf" but have not had any success. I am setting the var within LivestreamPlayer.as as _showPlayButton = false, Im trying to pass them as javascript calls like player.showPlayButton(false) and I am trying to pass them as params like params = {showPlayButton: "false"} and nothing seems to be working.
Any help on getting rid of the overlayed player button would be greatly appreciated. |
|
#2
|
|||
|
|||
|
Figured it out....
I was trying to pass the call from within LivestreamPlayer.as as: public var _showPlayButton = false; then from within onPlayerReady(): player.showPlayButton = _showPlayButton; So I ditched that and instead wrote the function: public function showPlayButton():void { player.showPlayButton = false; } then just called the function from within the onPlayerReady() Now magically the play button is not appearing, so success I guess... |
![]() |
| Tags |
| player api |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|