Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Have you tried to create on SWF Object with jQuery thus setting the swf params with that then using the flow players content setting to directly set the html of the model.??</p> <p>Also try check your debug window too see if there is any errors showing up.</p> <p>-- E.G</p> <pre><code>var flashvars = { //Change this with $.extend within click callback if you need to! file : 'yvideo.flv' } var flowBoxParams = { 'autoScale': false, 'transitionIn': 'none', 'transitionOut': 'none', 'width': 680, 'height': 495, } var $conatiner = $('&lt;div&gt;&lt;/div&gt;').attr('id','MediaPlayerHolder').hide(); swfobject.embedSWF("/flowplayer/flowplayer.swf","MediaPlayerHolder","300","120","9.0.0",flashvars,params,attributes); $("a.video_link").click(function(){ //Merge basic settings with title params = $.extend(flowBoxParams,{title:this.title,html:$container}); //Send object to FlowPlay $.fancybox(params); //Show the video play $($container).show(); }); </code></pre> <p>THis is just basically setting to variables with your default settings within them (flashvars ,flowBoxParams), the creating an empty div container with the id (MediaPlayerHolder) and setting it to display:none.</p> <p>Then we create a basic flash element with swfObject wich is your flowplayer swf and assign it to the hidden div container.</p> <p>we then wait for the user click to be activated and then we alter the default settings to add title value to the flowplayer options.</p> <p>We then tell flow player to begin what it needs to do.</p> <p>with thin change the visibility of the container.</p> <p>This is untested but if heres any errors they should only be minor, unless flow is strict when it comes to loading the swf will itself.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload