Example 9 - Configuring the click-through target window

By default, the click-through URL is opened in a new window. This can be modified with the "target" option as follows (valid values are "_self", "_blank", "_top", "_parent"):


The configuration for this example is:


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

        ova: {
            url: "",

            "debug": {
                "levels": ""
            },

            "ads": {
                "pauseOnClickThrough": true,
                "clickSign": {
                    "target": "_self"
                },
                "servers": [
                    {
                       "type": "OpenX",
                       "apiAddress": "",
                       "customProperties": { 
                            "target": "category=food" 
                       }
                    }
                ],
                "schedule": [
                    {
                       "zone": "1",
                       "position": "pre-roll"
                    }
                ]
            }
        }
    }
});