Example 3 - Text Overlays

The configuration for this example is:

<style type="text/css">
.textAdContainer {
   width: 450px;
   height: 50px;
   background: #000000;
}
.textAdTitle {
   font-family: "sans-serif"; 
   font-size: 12pt; 
   font-style: bold; 
   color:#FAF8CC; 
   leading:5px;
}
.textAdDescription {
   font-family: "sans-serif"; 
   font-size: 10pt; 
   font-style: bold; 
   color:#FBB917;
}
.textAdCallToActionTitle {
   font-family: "sans-serif"; 
   font-size: 9pt; 
   leading:3px;
   color: #FFFFFF;
}
</style>

flowplayer("a.example", { src: "", wmode: "opaque" }, {
    playlist: [
       {
           url: "",
           duration: 40
       }
    ],
    plugins: {
        controls: {
            autoHide: "always"
        },

        ova: {
            url: "",

            "ads": {
                "servers": [
                    {
                       "type": "OpenX",
                       "apiAddress": "",
                       "allowAdRepetition": true
                    }
                ],
                "schedule": [
                    {    
                      "zone": "29",
                      "startTime": "00:00:03",
                      "duration": 10,
                      "overlay": { "html5": false },
                      "regions": {
                          "flash": false,
                          "html5": true
                      },
                    }
                ]
            },

            "debug": {
                "levels": ""
            }
        }
    }
});