Blog | Sitemap | Forum

Bookmark using any bookmark manager!

Customize skinning flash video player for web
Customize flash video player in the easiest way

Remove the “Embed & URL” Area at the Right of Player

The web player generated with PlayerDIY Web Player in default has an “Embed and URL” area at the right of it. The “Embed and URL” area includes the embed code and the URL address of the player, with which, player users could share it on internet easily and conveniently.

However, this area can be other thing (for example is an ad. Take a look at the example), or can be just removed. Below are the examples about removing this area with PlayerDIY Web Player and with flashvars code.

Examples:

  • PlayerDIY Web Player
  • Flashvars Code
To remove the “Embed and URL” area with PlayerDIY Web Player, all we need to do is choosingnone” as the value of “User define area” option on the following interface.

To remove the "Embed & URL" area of a player with flashvars code, you just need to insert a line of flashvars code into the embed code of the player. And after inserting the flashvars code, the embed code will be as below:

<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent" align="center"></div>
<script type="text/javascript">
var so = new SWFObject('mwplayer.swf','player','500','450','9');
so.addParam('wmode','opaque');
so.addParam('quality','high');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('flashvars','playerOpts=UserDefArea**s');
so.write("flashcontent");
</script>

The line of the red code is the flashvars code for removing the "Embed & URL" area. Get more information about flashvars code.

Configuration