I would like to place the facebook button on the bottom-left of a flash movie that will be on screen. My problem is that when the screen is resized the swf position is changed (it keeps in the center of the screen and that's what I want) but the facebook's button position won't change with the flash movie.
My site is http://www.quickguitartuner.com/ (if it refuse to load on the first attempt press F5. That's another problem I'm stuck in)
The page's code:
<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>
Thanks!
UPDATE:
I inserted the facebook button code inside the swf object code, like this:
<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>
and it seems to work now. Is this workaround ok?