Yesterday I was trying to include a flash object in a facebook app using FBML fb:swf tag. The flash object needed to change the url of the page it was running on on a particular event. But since facebook prevents direct script access from flash, this could not be done.
Here is a simple workaround:
1. Create a simple html page containing only the flash object that you want to include.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <object type="application/x-shockwave-flash" data="foo.swf" width="300" height="300"> <param name="movie" value="foo.swf"> <param name="quality" value="high"> <param name="scale" value="noscale"> <param name="salign" value="LT"> <param name="menu" value="false"> </object> </body> </html>
2. Embed this html on the facebook page using the fb:iframe tag.
<fb:iframe src="http://anandnalya.com/foo.html" width="300" height="300" frameborder="0" scrolling="no"></fb:iframe>Now you can make all the Actionscript calls you want to. Only caveat to this approach is that you will no longer be able to make Facebook API calls directly from flash.




{ 9 } Comments
Thank you thank you thank you!!! I could not figure out how to get Amazon widgets into my php page and you solved my problem!
thanks!!!!!
thanks, you give me an idea with different way. cause not works for me
Hey, I realize this post is dated a year ago but I was wondering if you see this comment if you can please answer some of my questions regarding this post. I hope to hear from you, thanks!
- S
@Shira
Let me know your question, I”ll try to answer them
where would I create a simple html page with the flash object I want to include?
Hi I need help I want to put this on a Static FBML page on my facebook PAGE
How do i do it ???
@lee-ann
You can use the Static FBML app for including it on your facebook page.
thanks for sharing. I’m trying to figure out how to add a like button in my .swf, at the time it’s more complex than I was expecting.
Hi,
Is it possible for you to point to an example “flash-object only” page to check if that works for me? Before I will start creating a page like this. Also: fb:frame needs to be inserted into a new tab created with static fbml?
Post a Comment