Code Lt | Facebook Emoticons
Advertisment

Tag Archives for Code Lt

Facebook Emoticons for Facebook.com chat!

Complete list of Facebook Chat Emoticons:

01. Smile
Emoticon: Facebook chat smile emoticon
Code: :-) or :) or :] or =)

02. Frown
Emoticon: Facebook chat frown emoticon
Code: :-( or :( or :[ or =(

03. Tongue
Emoticon: Facebook chat tongue emoticon
Code: :-P or :P or :-p or :p or =P

04. Grin
Emoticon: Facebook chat grin emoticon
Code: :-D or :D or =D

05. Gasp
Emoticon: Facebook chat gasp emoticon
Code: :-O or :O or :-o or :o

06. Wink
Emoticon: Facebook chat wink emoticon
Code: ;-) or ;)

07. Glasses
Emoticon: Facebook chat glasses emoticon
Code: 8-) or 8) or B-) or B)

08. Sunglasses
Emoticon: Facebook chat sunglasses emoticon
Code: 8-| or 8| or B-| or B|

09. Grumpy
Emoticon: Facebook chat grumpy emoticon
Code: >:( or >:-(

10. Unsure
Emoticon: Facebook chat unsure emoticon
Code: :/ or :-/ or :\ or :-\

11. Cry
Emoticon: Facebook chat cry emoticon
Code: :'(

12. Devil
Emoticon: Facebook chat devil emoticon
Code: 3:) or 3:-)

13. Angel
Emoticon: Facebook chat angel emoticon
Code: O:) or O:-)

14. Kiss
Emoticon: Facebook chat kiss emoticon
Code: :-* or :*

15. Heart
Emoticon: Facebook chat heart emoticon
Code: <3

16. Kiki
Emoticon: Facebook chat kiki emoticon
Code: ^_^

17. Squint
Emoticon: Facebook chat squint emoticon
Code: -_-

18. Confused
Emoticon: Facebook chat confused emoticon
Code: o.O or O.o

19. Upset
Emoticon: Facebook chat upset emoticon
Code: >:O or >:-O or >:o or >:-o

20. Pacman
Emoticon: Facebook chat pacman emoticon
Code: :v

21. Curly lips
Emoticon: Facebook chat curly lips emoticon
Code: :3

22. Robot
Emoticon: Facebook chat robot emoticon
Code: :|]

23. Chris Putnam
Emoticon: Facebook chat Chris Putnam emoticon
Code: :putnam:

24. Shark
Emoticon: Facebook chat Shark emoticon
Code: (^^^)

25. Penguin
Emoticon: Facebook chat Penguin emoticon
Code: <(“)

Facebook Emoticons – Make Your Own Application

Make Your own Facebook Emoticons Application

This basic application will not even require an install from the user.

This site has alot of information:

Code:
http://wiki.developers.facebook.com/

Please Note: You will need a hosting plan.

Facebook Emoticons Developers

  1. Go to:
      Code:
      http://www.facebook.com/developers/createapp.php

      Image
      The Following screen will appear:
      Image

  2. Click Canvas
    • Image
      Fill out: Image

      Select FBML: Image
      Click Save Changes: Image
      Image

  3. On this new page:
    1. Note down the API KEY and APPLICATION SECRET
    2. Click Download the Client Library:
        Image

      Navigate to: facebook-platform -> php -> and copy all these files to the directory of your website

  4. Upload files to the website location you entered into Canvas Callback URL (More Information Below)
  5. Visit Canvas Page URL to view.

Coding Your Site

  1. Create a file called “index.php” at the top include this code:
    Code:
    <?php
    require_once ‘facebook.php’;

    $appapikey = ‘API KEY’;
    $appsecret = ‘APPLICATION SECRET’;
    $facebook = new Facebook($appapikey, $appsecret);
    ?>

  2. Next include all the code you wish to display, including FBJS you wish to use.Here is an example file:
    Code:
    <?php
    require_once ‘facebook.php’;

    $appapikey = ‘API KEY’;
    $appsecret = ‘SECRET’;
    $facebook = new Facebook($appapikey, $appsecret);

    $message = “MESSAGE TO DISPLAY”;
    ?>
    <h1>Message Display</h1>
    Your Message: <?php echo $message; ?>
    <script type=”text/javascript”>
    var attachment = {
    ‘name’:'Message Display’,
    ‘href’:'http://apps.facebook.com/canvasurl/’ ,
    ‘caption’:'{*actor*} displayed the following message:’ ,
    ‘description’:'<?php echo $message; ?>’ ,
    ‘properties’:[{'text':'Get Your Own','href':'http://apps.facebook.com/canvasurl/'}] ,
    ‘media’:

    [{'type':'image','src':'http://www.google.com/linktoimage.jpg','href':'http://apps.facebook.com/canvasurl/'}]
    };
    Facebook.streamPublish(”, attachment);</script>

Testing

  1. When you visit this on the server:
    Image
  2. When you visit this on Facebook:
    Image
  3. And Your Wall:
    Image

Facebook Emoticons