Hi,
My previous post here: http://flowplayer.org/forum/2/67009 talks about the same issue.
For some reason on my pc Windows 7 Pro + IE9 (and Windows Virtual PC running Windows XP + IE8) my player.swf that contains builtin configuration fails when captions plugin tries to use content plugin, but content plugin is not ready yet, THIS HAPPENS ONLY WHEN USING IE.
Builtin configuration works fine with other browsers.
Error comes from Content.as (below). Somewhere from Captions.as some function tries to use content plugin that is not ready yet. This must be timing issue, because other browsers works fine and IE works also fine IF I remove captions:[] from clip Objects.
My previous post here: http://flowplayer.org/forum/2/67009 talks about the same issue.
For some reason on my pc Windows 7 Pro + IE9 (and Windows Virtual PC running Windows XP + IE8) my player.swf that contains builtin configuration fails when captions plugin tries to use content plugin, but content plugin is not ready yet, THIS HAPPENS ONLY WHEN USING IE.
Builtin configuration works fine with other browsers.
Error comes from Content.as (below). Somewhere from Captions.as some function tries to use content plugin that is not ready yet. This must be timing issue, because other browsers works fine and IE works also fine IF I remove captions:[] from clip Objects.
public function set style(value:FlowStyleSheet):void {
Assert.notNull(_contentView, "content view not created yet");
_contentView.style = value;
}