This video is about everyday things that just piss you off! Enjoy!! Add us in myspace! We have a facebook, but cant find out what the URL is! Any help? Until we can find it, add us on myspace! Will → myspace.com Casey→ myspace.com
Url
Change your username on Facebook Emoticons
We already spoken about how to customize url of our Facebook Emoticons page and have said to choose it very carefully because it would not be possible to change it.

After some abuses from some users that used friends’ names or false names, Facebook Emoticons has given the possibility to change own username.
To change your username you have to go on your Facebook Emoticons profile and go on “Settings”, second voice you’ll find is “username”, insering new username you can verify if it is still available and change.
Finally now, who has choosen a wrong username, or annoyed about the old username can choose another one. I suggest I can give you is:if you have n mind a special name well diffuse go and verify if it is still available and try to get it before another does!
Facebook Emoticons
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
- Go to:
Code: http://www.facebook.com/developers/createapp.php 
The Following screen will appear:

- Click Canvas
-
- Note: Canvas Page URL is the URL you visit on Facebook Emoticons, your custom URL
Canvas Callback URL is the URL Facebook Emoticons copies the content off. (Like an alias)

Fill out:
Select FBML:

Click Save Changes:

-
- On this new page:
- Note down the API KEY and APPLICATION SECRET
- Click Download the Client Library:

Navigate to: facebook-platform -> php -> and copy all these files to the directory of your website
- Upload files to the website location you entered into Canvas Callback URL (More Information Below)
- Visit Canvas Page URL to view.
Coding Your Site
- 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);
?> - 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
- When you visit this on the server:

- When you visit this on Facebook:

- And Your Wall:
