我想将 facebook 按钮放在屏幕上的 Flash 电影的左下角。我的问题是,当屏幕调整大小时,swf 位置发生了变化(它保持在屏幕的中心,这就是我想要的),但 facebook 的按钮位置不会随着 flash 电影而改变。
我的网站是http://www.quickguitartuner.com/(如果它在第一次尝试时拒绝加载,请按 F5。这是我遇到的另一个问题)
页面代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Quick Guitar Tuner</title>
</head>
<body>
<p align="center"><u>
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="900" height="550">
<param name="movie" value="Flash/bin/main2_secure.swf">
<param name="quality" value="High">
<embed src="Flash/bin/main2_secure.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="900" height="550" quality="High"></object>
</u></p>
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=127418320673531&xfbml=1"></script><fb:like href="http://www.quickguitartuner.com/" send="true" layout="box_count" width="450" show_faces="true" font="" style="position:relative; left:500px; top:0px"></fb:like>
</body>
</html>
谢谢!
更新:
我在 swf 对象代码中插入了 facebook 按钮代码,如下所示:
<p align="center"><u>
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="900" height="550">
<param name="movie" value="Flash/bin/main2_secure.swf">
<param name="quality" value="High">
<embed src="Flash/bin/main2_secure.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="900" height="550" quality="High">
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=127418320673531&xfbml=1"></script><fb:like href="http://www.quickguitartuner.com/" send="true" layout="box_count" width="450" show_faces="true" font="" style="position:relative; left:600px; top:-300px"></fb:like></object>
</u></p>
它现在似乎工作了。这种解决方法可以吗?