Add Meebo to blog cfc
If you've not yet used Meebo head over to their site and check it out or read the extract below - it's a great webclient for instant messaging and a good example of what web2.0 is all about.
meebo.com is a website for instant messaging from absolutely anywhere. Whether you're at home, on campus, at work, or traveling foreign lands, hop over to meebo.com on any computer to access all of your buddies (on AIM, Yahoo!, MSN, Google Talk, ICQ and Jabber) and chat with them, no downloads or installs required, for free!
Now that you know what it is maybe you want it on your blog so here's what you do. In your admin area create a text block and add your meebo code i.e.
Then create a page called meebo.cfm in the includes/pods directory and make this call the blocktext you just created
<cfprocessingdirective pageencoding="utf-8">
<!---
Name : meebo.cfm
Author : Nick Tong
Created : Dec 2006
Last Updated :
History :
Purpose : Display links box
--->
<cfmodule template="../../tags/podlayout.cfm" title="Meebo">
<!--- here we use the textblock to get information for the pod --->
<cfset request.textBlock = application.textblock.getTextBlock("meebo") />
<cfoutput>
<!--- check to make sure that the body exists (this may get updated at some point so we need this check) --->
<cfif structKeyExists(request.textBlock,"body")>
#request.textBlock.body#
<cfelse>
Text block failed
</cfif>
</cfoutput>
</cfmodule>
<cfsetting enablecfoutputonly=false>
Then in your tags/layout.cfm file add the incude to the pod
And that's it, you've got meebo on your blog. See mine on the left and say hi!!





To solve this problem I've been browsing for other web messengers and came across eBuddy.
A little different to Meebo, but same idea! They got mutliple IM networks as well - MSN, Yahoo, AIM & ICQ. At least this works...