1

我正在使用闪存开发三星智能电视应用程序。该应用程序嵌入在 html 页面中:

<body style="margin:0;border:0;padding:0" onload="Main.onLoad();" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
<div style="margin-top:0;border:0;padding:0;background-color:red">
asdf
</div>
<!-- Flash -->
<div>
    <object style="margin-top:0;border:0;padding:0" onkeydown="Main.keyDown();" type="application/x-shockwave-flash" id="flashobj" width="960" height="540">
        <param name="movie" value="./Server.swf">
        <param name="allowFullScreen" value="true" />
    </object>


</div>              
</body>

如您所见,边距、内边距和边框都设置为 0。电视应用程序尺寸设置为 960x540。闪光物体也是如此,但由于某种原因,闪光物体上方有一个白色间隙。我在那里放了一个 div 来测试是什么造成了差距,但这个 div 是 <body> 中的第一个元素,并且低于差距。我试着改变身体的颜色,白条也改变了颜色。

闪光灯对象也被推下视图尺寸。

是什么造成了这种差距,我该如何消除?还是有某种方法可以让智能电视上的 Flash 应用程序全屏显示?

未知的空白

4

1 回答 1

1

奇怪..我第一次看到这种问题。

您可以随时使用position:absolute,它应该足以解决问题。

<object style="position:absolute; top:0; left:0; width:960px; height:540px" onkeydown="Main.keyDown();" type="application/x-shockwave-flash" id="flashobj" width="960" height="540">
    <param name="movie" value="./Server.swf">
    <param name="allowFullScreen" value="true" />
</object>
于 2012-10-17T05:30:25.730 回答