Hi All,
When i try to open the window, i get only the title. When I re-size it manually, I can see the loaded SWF file.
Please help me in fixing this bug.
Following is the code:
When i try to open the window, i get only the title. When I re-size it manually, I can see the loaded SWF file.
Please help me in fixing this bug.
Following is the code:
Code:
wizardWin = desktop.createWindow({
id: 'StartWizard/' + expId,
title: 'Wizard: ' + expName,
width: win_wd,
iconCls: 'view_wizard',
height: win_ht,
resizable: true,
tbar:tb,
minimizable: false,
draggable:true,
autoScroll:false,
items:[{
xtype: 'flashpanel',
border :true,
id: 'flash-wiz',
width: win_wd,
height: win_ht,
hideMode : 'nosize',
mediaCfg : {
mediaType:'SWF',
url: path,
id: 'flash-wiz',
start: true,
controls: true,
status: true,
params: {
allowScriptAccess: 'always',
wmode: 'opaque',
scale: 'exactfit',
salign: 't'
}
}
}]
});
Comment