javascript - Why do I have to click to activate plugins with Flash player for Android? -


want play video on android tv, use flowpplayer 3, adobe flash player android version 11.1.115.81 , browser firefox.

my code:

<script src="flowplayer/flowplayer-3.2.11.min.js" type="text/javascript"></script> <script src="jquery/jquery-1.11.2.min.js" type="text/javascript"></script> <body >     <a href="flowplayer-700.flv"  style="display:block; width:425px; height:300px;" id="player"></a>     <script type="text/javascript">             flowplayer("player", "flowplayer/flowplayer-3.2.12.swf");             $('.play').click(function(){                 $f('player').play();             });             $('.stop').click(function(){                 $f('player').stop();             });     </script> </body> 

when play on android, ask click activate, on windows not.

i need play automatically.

flashfox works.my code has no peoblem.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -