Hi Guys,
i written some code like this, but in that it showing some javascript error, i.e
$f is undefined
code :-
please check the code and give some solution..............it's urgentCode:$f("player", "/vgn-ext-templating/momentive/flowplayer-3.1.5.swf", { clip: { // track start event for this clip onStart: function(clip) { _tracker._trackEvent("Videos", "Play", clip.url); }, // track pause event for this clip. time (in seconds) is also tracked onPause: function(clip) { _tracker._trackEvent("Videos", "Pause", clip.url, parseInt(this.getTime())); }, // track stop event for this clip. time is also tracked onStop: function(clip) { _tracker._trackEvent("Videos", "Stop", clip.url, parseInt(this.getTime())); }, // track finish event for this clip onFinish: function(clip) { _tracker._trackEvent("Videos", "Finish", clip.url); } }, // show stop button so we can see stop events too plugins: { controls: { stop: true } } });



Reply With Quote

Bookmarks