How to change Static HTML iframe tab icon [closed] - facebook

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am using the Static HTML: iFrame Tabs app to use to design landing pages for several businesses. I have designed the landing page in html and it working fine,but i need to change the Tab's icon,i need put my own icon. please help me

This application will help you with that
https://www.facebook.com/apps/application.php?id=205521576149308
it is the same application with more features including custom icon

Related

Custom Facebook authorize dialog? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
This is a custom Facebook dialog? How to do similar? Are there an "official way" to do this?
See:
http://www.facebook.com/yazigi.oficial/app_352476968122012?ref=ts
I don't found nothing similar to this in the documentation and in the source code from example.
This is just the original Facebook Auth dialog, only used with parameter display_mode=async:
“async: For use only when loading a dialog via the JS SDK from within a Canvas or Page Tab App. Using async loads the dialog in a modal window. async is the default display mode within Canvas and Page Tab Apps.”
https://developers.facebook.com/docs/reference/dialogs/#display

Toast in a webpage triggered from server-side [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Consider Facebook, when someone likes your photo you get a mini popup notification in the bottom left corner of the screen which stays for a couple of seconds.
I want to know how is it triggered?
If you want server-side push to browser, you should use techniques like Comet.
http://en.wikipedia.org/wiki/Comet_(programming)
There's many implementations with various languages.

Designing webpage for iphone, can you change the html? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm linking to an alternate .css for the iphone, but is it possible to link to an alternate .html? I'm not overly keen on going through the original html, although I will if I have to.
Thanks for any help,
Tom
Using this detect handheld device in jquery you will be able to know what kind of handheld is loading your page and than you may redirect the user to your new html page.
Something like:
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) )
{
location.href = "new-page.html";
}

How to make a kiosk app iPhone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can i create a kiosk app for the iPhone?
What is the best way to upload content in sections html?
HTML or PDF would work fine. You can use a UIWebView to display both formats. Or if there is a standard way of laying everything out that will not change, you can use XML (or RSS).

MY app is not opened inside facebook its goes to my host [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Hello my app is not opened inside facebook canvas. if I click on my app it just opens my app's profile page.. how can I do this?
When you create an application you have to define its "App Namespace" in the developers app.
You can read more here.
Your application will get a url like this : http://apps.facebook.com/{your_app_namespace}
Once the user gets to that page - facebook will load your app inside an iframe.