I am trying to integrate Flowplayer in ExtJS by using Ext.flash.Component
. While doing this, i am getting following error -
ReferenceError: swfobject is not defined
new swfobject.embedSWF(
Here is my code -
var win = Ext.widget('window', {
title: "Flowplayer Integration",
layout: 'fit',
width: 300,
height: 300,
x: 20,
y: 20,
resizable: true,
items: {
xtype: 'flash',
url: 'flowplayer-3.2.16.swf'
}
});
win.show();