Example 5 - Keep overlay visible after click

This example demonstrates how to configure an overlay so that it stays visible after the user has clicked it.

The configuration for this example is:


flowplayer("a.example", "", {
    plugins: {
        controls: {
            autoHide: "always"
        },

        ova: {
            url: "",

            "shows": {
                "baseURL": "",
                "streams": [
                    { "file":"", "duration":"00:00:20" }
                ]
            },

            "ads": {
                "servers": [
                    {
                        "type": "OpenX",
                        "apiAddress": ""
                    }
                ],
                "remainVisibleAfterClick": true,
                "schedule": [
                    {
                        "zone": "30",
                        "startTime": "00:00:01",
                        "width": 450,
                        "height": 50
                    }
                ]
            },

            "debug": {
                "levels": "",
                "debugger": "firebug"
            }
        }
    }
});