Example 1.00.00 - Hard coding the control bar height

Loading the player ...

The configuration for this example is:


<script type="text/javascript">jwplayer("container").setup({
       flashplayer: "", 

       playlist: [
           { file: "http://streaming.openvideoads.org:81/shows/the-black-hole.mp4", duration: 60 }
       ],

       "controlbar.position": "bottom",
       
       plugins: {
           "../../../../dist/swf/ova-jw.swf": { 
              "debug": {
                 "levels": "fatal, config, vast_template, vpaid, http_calls, playlist, api"
              },

              "player": {
                 "controls": { "height": 35 }
              },

              "ads": {
                 "servers": [
                     {
                        "type": "OpenX",
                        "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php"
                     }
                 ],
                 "schedule": [
                     {
                        "zone": "5",
                        "position": "pre-roll"
                     },
                     {
                        "zone": "28",
                        "width": 450,
                        "height": 50,
                        "startTime": "00:00:05",
                        "duration": "10"
                     }
                 ] 
              }
           }
       },
       height: 300,
       width: 450
});
</script>