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&amp;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&amp;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?

link|improve this question

71% accept rate
BTW, nice website – Rohan Verma Jun 19 '11 at 14:43
I had to put my guitar VERY near the mike on my iMac ;) Also it asks each time if I will allow Flash to control my mike – mplungjan Jun 19 '11 at 14:51
feedback

3 Answers

up vote 1 down vote accepted

Your update is not a workaround since you are not using CSS and yes That is the answer! What you did was, that you put the alignment on the P tag so the browser automatically renders the P tag in the centre. But you can do this as it will probably help you since it is not safe to put the facebook inside the swf object tag. this would be better:

<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="http://www.quickguitartuner.com/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>
    <p align="center"><div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=127418320673531&amp;xfbml=1"></script><fb:like href="http://www.quickguitartuner.com/" send="true" layout="box_count" width="450" show_faces="true" font="" ></fb:like>
</p>
link|improve this answer
thank you for the infos! how should I proceed to do the sabe with google's +1? It's 'render' code is <g:plusone size="tall" href="www.quickguitartuner.com"></g:plusone> – Lucas Jun 19 '11 at 15:20
I've just made another post for this question I've just asked (stackoverflow.com/questions/6403567/…) – Lucas Jun 19 '11 at 16:16
feedback

Just put the facebook stuff in the same p-element as the flash object:

<p align="center"><u>
<object ...>
...
</object>
<div id="fb-root"></div><script src="...">...</fb:like>
</u></p>

And of course delete the left:500px; style of fb:like. So everything is centered, but the like-button is left-hand-side of the flash..

link|improve this answer
feedback

Try to apply this css:

position: relative;
left: 50%;
bottom: 10px;
width: 60px;
margin-left: -30px;

screenshot

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.