By drp_gt07 on
hi to all, do you know how to configure thickbox in order to play video on it?
does it need module or something to achieve it?
... what i want is when you click the thumbnail of the video, thickbox popup window will prompt and there is a video player (flowplayer) on it to play the video. (this video is uploaded using cck video file field)
please help.
Comments
#TB_inline
I've approached this using the "Inline Content" version of Thickbox.
Basically, render your video player somewhere on the page, but hidden (you can use SWFTools to generate the player, and then hide itusing CSS
#field-uploaded-video { visibility: hidden; display: none;}or jQuery$('#field-uploaded-video').hide();.Then create a link (via theming, Display Suite, or a block) something like this:
<a class="thickbox" href="#TB_inline?height=300&width=300&inlineId=field-uploaded-video">Watch video</a>++Andy