Is it possible to configure FLVPlayback so that it does not auto-load the associated video file, but instead waits for a click on a "play" button to load and then play it? (I'm building a site that will have a player for a rather large video on its front page, and I'd rather not have the video downloaded unless/until the user asks to see it.) I already have autoplay set to false, but I can still see the video getting downloaded in the progress bar.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Leave the source of the FLVPlayback blank. Set the source only when the user asks to see the video. |
|||
|
|
|
add an invisible button, with a hit area as big as the video:
or something like that. the problem is: the FLVPlayback component shows an animated bar with stripes when there is no content assigned to it. if you don´t want to see that, you could set the "skinAutoHide" property to true. after that, there is only one more problem: the user doesn´t see your player, so you should add a play image in the button. if you click on the button, the button disappears and the video starts loading and playing. |
|||
|