fbml

facebook feed template: right alignment for text

I'm trying to make my text right aligned in my feed template, but it seems that FBML does not support a div tag in feed body. how can I make my text right aligned? ...

Using form in facebook boxes

When I'm adding form on my facebook Box FBML page like so: <form action="rel_action" method="post"> <input type="text" name="inp_text" /> <input type="submit" name="sbm_send" value="GO!" /> </form> Facebook will post it on my application URL -- What I would like to do is that browser would stay my Box tab and use ajax (like it does wi...

FBML multi friend selector in fb:dialog

Hey Guys, Is there a way to show the multi friend selector widget (fb:multi-friend-selector) in an fb:dialog? I have a button, on selecting which I would like to show the friend selector popup and users can send invite to their friends. I got the friend selector working on the main page but have no clue on how to display that widget i...

reading facebook control value returns null in iframe

Hello all, I am building a small facebook application in an iframe mod. In my application I want to enable my users to search their friends. After working a bit with XFBML I’ve added the following code to my aspx page: <fb:serverfbml> <script type="text/fbml"> <fb:fbml> <fb:multi-friend-input width="150px" bo...

selecting friends inside facebook iframe app

Hi all, I am trying to build a small facebook app inside an iframe. Amongst other thing the user will be able to pick a list of friends and perform a search on their content in the application. My problem is that even if the user does insert his friends name there's nothing I can do with it (Facebook let's us work only with their ids), ...

FBML and HTMLParser error

The below code: <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en" lang="en"> <head> <title>FB Test</title> </head> <body> <a href="#" onclick="FB.Connect.inviteConnectUsers();">Test</a> <fb:serverfbml style="width: 350px;"> <script type="text/fbml"> ...

How can I scrape the number of fans for my facebook app?

I just want a simple a way to grab the number of fans. I can do this on the serverside with python preferably. I'm open to doing it with a piece of the javascript api. This is for an edge case. I want to essentially have a fanbox as http://wiki.developers.facebook.com/index.php/Fan_Box: <div id="facebook-fanbox" class="span-5 last">...

How do I get the UserVoice Feedback Tab to display on a Facebook app page using FBML?

I have a Facebook application that is using FBML and I want to include the UserVoice feedback tab widget on my app's pages. I copied and pasted the JavaScript into my FBML page, but when Facebook renders the page, that JavaScript is removed, so the tab doesn't show up. Does anyone have experience with Facebook's modified version of Java...

how to add my application icon next to link button in facebook using api

Hi, I have created application in facebook. I want to add my application after link button where photos,video,calendat,event,link and more buttons are there. Is there any possibility to add my application in facebook like photo or video under more button. Please help me regarding this.. Thanks in advance. ...

simple fbml fb:login-button is not rendering in ie6

The following codes works in FF and Chrome, but IE6 does not render the connect button. What am I missing here? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml"&gt; <head> <title><...

How to refresh the dialog box in Facebook after submit (Rails, Facebooker, FBML)?

Hi, I am using Rails (Facebooker). This is for Facebook apps (FBML) and to keep it simple, let's assume it's a student registration system. In my student page (displaying their photo, name, grade etc), I have an 'edit' button. Clicking that button, will display a FB-dialog to edit their details. My aim is simple. I want the user to be...

Graphs in a Facebook App

I've been messing around a bit with a Facebook application for a while now, which is using FBML. A need has arisen to integrate graphs to display data. From what I can tell my options would be one of the following: Find a Flash Graph that doesn't require a JavaScript library to work Convert the application to an IFrame application, and...

How can i get Ajax to work with coldfusion using the Facebook FBML api?

I am trying to make a facebook FMBL application for a client, not iframe or FAcebook connect app. I am having trouble using CF PROXY and Jquery for my synchronous data connections. I know how to use it for typical web pages but the Facebook version is incredibly difficult to work with. I understand that Jquery cannot be used but what ab...

Is there a way to insert an @mention into a Facebook status update posted with pyfacebook?

I have some code like the following in my application: message = "Hi, @John Doe!" postID = fb.stream.publish( message = loader.render_to_string('wall_post.phtml', {'message':message}), action_links = simplejson.dumps([{'text': "Check out blah", 'href': "http://blah.dev"}]), target_id = 'nf' ) Is there any way to represent ...

How to post sheduled posts on my friends wall in facebook

Hi, I want to post updates or messages about my application to my friends .How to post updates or messages on friends wall at specified time interval. Thanks in advance... ...

Facebook Application - Url-rewriting with fbml?

I have an app that I'm creating with CakePHP, which rewrites the url from something illegible to most users to something a little easier to comprehend. I'm having a problem when I use the FBML canvas. When I try to access, say, http://apps.facebook.com/myapp/articles, I get the following error: Received HTTP error code 404 while ...

Communicating with parent (Facebook FBML Page) from iFrame (Local page)

Hi, I'am currently developing a Facebook application which has a iFrame in it. The iFrame loads a Java applet (So the FBML Page is just a wrapper for header footer and the FBML functions). The current situation is, for example, the Java applet has a event (User finished playing a game) and it does a javascript call on the iFrame page. ...

Facebook App URL Issue

I have an FBML app and a strange thing keeps happening. If I go to http://apps.facebook.com/myapp/page2.php I just get redirected to http://apps.facebook.com/myapp/index.php It always goes back to index.php even though I specified page2.php and it is in the URL. This doesn't happen to my iframe apps. Does anybody know why it's beha...

facebook and fbml

i am listing on the page into a select element the names of all friends of a user who uses my app.. the render is alright as below but then when it goes through fbml only one friend comes up? <form name="form1" id="form1"> <option value="" selected="true">Choose Friend</option> ...

How to use Facebook Share FBML button on a page loaded via AJAX?

I have a chunk of content that I load via AJAX and on that page I have a FBML share button. I also tried it without the FBML and just use the hyperlink and script tag. When I load the content directly, the share button loads fine, but when I load it via AJAX, the button doesn't show up. Any ideas on how to get the FB Share button work...