1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Embedded FLV player full screen does not work

Discussion in 'Graphics & Multimedia' started by robcub, Jun 17, 2010.

  1. #1
    Anyone know why this video here
    on the LEFT
    http://www.boyblueent.com/site/blog/boy-blue-entertainment-new-promo/

    doesn't work when you click the full screen button.

    This is the code I'm using:

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="348" height="195" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="file=http://www.boyblueent.com/site/video/BBE_FINAL_MASTER1.flv&amp;image=http://www.boyblueent.com/site/video/new-promo-still.jpg" /><param name="src" value="http://www.boyblueent.com/site/video/mediaplayer.swf" /><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" width="348" height="195" src="http://www.boyblueent.com/site/video/mediaplayer.swf" flashvars="file=http://www.boyblueent.com/site/video/BBE_FINAL_MASTER1.flv&amp;image=http://www.boyblueent.com/site/video/new-promo-still.jpg"></embed></object>
    Code (markup):
     
    robcub, Jun 17, 2010 IP
  2. robcub

    robcub Greenhorn

    Messages:
    62
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #2
    I got it to work using a WordPress plugin called FLV Embed http://www.channel-ai.com/blog/plugins/flv-embed/

    It created this code using JavaScript for the vars and params:

    <p id="player1" style="display:none"><a href="http://www.macromedia.com/go/getflashplayer">Get the latest Flash Player</a> to see this player.</p> 
    <noscript><p>[Javascript required to view Flash movie, please turn it on and refresh this page]</p></noscript> 
     
    <script type="text/javascript"> 
    	document.getElementById("player1").style.display = "";
    	
    	var s1 = new SWFObject("http://www.boyblueent.com/site/wp-content/plugins/flv-embed/flvplayer.swf","player1","348","215","7");
    	s1.addParam("wmode","transparent");
    	s1.addParam("allowscriptaccess","always");
    	s1.addParam("allowfullscreen","true");
    	s1.addVariable("height","215");
    	s1.addVariable("width","348"); 
    	s1.addVariable("file","http://www.boyblueent.com/site/video/BBE_FINAL_MASTER1.flv");
    	s1.addVariable("image","http://www.boyblueent.com/site/video/BBE_FINAL_MASTER1.jpg");
    	s1.addVariable("link","http://www.boyblueent.com/site/video/BBE_FINAL_MASTER1.flv");
    	s1.write("player1");
    </script> 
    Code (markup):
     
    robcub, Jun 17, 2010 IP
  3. jumpjump

    jumpjump Peon

    Messages:
    287
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Put the FLV video on Web page step by step.
    More info, you can view:http://www.flash-video-soft.com/blog/?p=4
    hope it is useful
     
    jumpjump, Jun 17, 2010 IP
  4. Shirley1874

    Shirley1874 Peon

    Messages:
    558
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Shirley1874, Jun 17, 2010 IP