Blog | Sitemap | Forum

Bookmark using any bookmark manager!

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

Hide Previous and Next Icons

The previous and next icons of player enable you to play the previous or next video quickly and directly by clicking them. However, if you only have one video to play and don't want to show the previous and next icon on control bar, you could hide them by configuring on PlayerDIY web player, or by inserting a line of flashvars code into the embed code of a player which generated by PlayerDIY Web Player.

The demo without the previous and next icons showing on the control bar.


  • PlayerDIY Web Player
  • Flashvars Code
To hide the previous and next icons with PlayerDIY Web Player, all you need to do is checking the “Hide previous and next button” option on the following interface.

With flashvars code to hide the previous and next icons, the embed code would 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=noPlayListBtn*true*b');
so.write("flashcontent");
</script>

The line of the red code is the flashvars code for hiding the previous and next icons. Get more information about flashvars code.

Configuration