//
// VERSION HISTORY
//
// 1.0 (February 11, 2003)
// - initial release
//
// 2.0 (May 12, 2003)
// - cross browser: it runs in IE, Netscape, Mozilla and Opera
// - ready for the upcoming (beta tested) changes at Xanga
// - clickable smileys, even for non-IE users, displayed in buttons
// - customizable number of smileys displayed in one row
// - customizable smiley button size
// - easily adjustable: only two arrays to maintain
//
// 2.1 (May 12, 2003)
// - preloading images for faster performance
// - XP Bugfix
//
// 2.2 (May 17, 2003)
// - necessary adjustments made because of recent changes at Xanga
// - made suitable for Mac users!
// - runs only at the comment page for increased performance
//
// 3.0 (Nov 5, 2005)
// - script was broken, due to changes at Xanga. Fixed.
// - script overall revised, some obsolete code removed.
//
// HOW TO USE:
// For use at Xanga only. Copy this entire code (including the script tags)
// and paste in the Website Stats box at your Look and Feel page. Make sure
// the previous version of this script (if any) is completely removed first.
//
// The script contains two arrays: "textSmileys" and "realSmileys". The items
// present in the array "textSmileys" will be automatically replaced with the
// corresponding images in the array "realSmileys". You can modify the arrays
// as you see fit, as long as both arrays keep the exact same number of items.
//
// For example, suppose you want to add some smiley to the script... that would mean
// in "textSmileys" you would add a shorthand like ":some_smiley:" or {somesmiley},
// and in "realSmileys" you would add it's url: "http://www.dude.com/some_smiley.gif".
//
// SETTINGS:
// - "maxNumberOfSmileysPerRow": number of smileys that will be displayed in one row.
// Smileys above that number will automatically be added to a new line. 10 by default.
// - "buttonSize": size of the smiley buttons in pixels. 30 px by default.
//
// AVAILABILITY:
// The script has been tested in the latest versions of IE, Netscape,
// Mozilla and Opera (Windows 98).
//
function typeSmiley(sSmiley)
{
if (document.getElementsByTagName('textarea')[0].getAttribute('name') == 'bdescr')
var editor = document.getElementsByTagName('textarea')[0];
else
{
var allTextAreas = document.getElementsByTagName('textarea');
for (i = 0; i < allTextAreas.length; ++i)
{
if (allTextAreas[i].getAttribute('name') == 'bdescr')
{
var editor = allTextAreas[i];
break;
}
}
}
editor.value = editor.value + sSmiley;
}
function replaceTextSmileys()
{
// ***add textual emoticons to the array below
var textSmileys = new Array(
":)",
":(",
":wink:",
":p",
":lol:",
":mad:",
":heartbeat:",
":love:",
":eprop:",
":wave:",
":sunny:",
":wha:",
":yes:",
":sleepy:",
":rolleyes:",
":lookaround:",
":eek:",
":confused:",
":nono:",
":fun:",
":goodjob:",
":giggle:",
":cry:",
":shysmile:",
":jealous:",
":whocares:",
":spinning:",
":coolman:",
":littlekiss:",
":laugh:");
// *** add the url's from the corresponding images below
var realSmileys = new Array(
"http://www.xanga.com/Images/smiley1.gif",
"http://www.xanga.com/Images/smiley2.gif",
"http://x86.xanga.com/d4b08653664b8417168/t402387.gif",
"http://www.xanga.com/Images/smiley4.gif",
"http://x1c.xanga.com/dbbc917008279355/t348.gif",
"http://xe7.xanga.com/36402702d33b2417164/t267708.gif",
"http://xdd.xanga.com/913e5ae234755417174/t10233.gif",
"http://x2f.xanga.com/41cf8073103482583/t2557.gif",
"http://x8d.xanga.com/8d9093e656db917897/t17531.gif",
"http://x8c.xanga.com/a92f0017c2d402752/t2725.gif",
"http://xd3.xanga.com/78da305b3743553669961/b35982670.gif",
"http://xcc.xanga.com/276f0a046033053667174/t3251016.gif",
"http://x80.xanga.com/ba10242726db2417195/t185007.gif",
"http://xe9.xanga.com/c0ad4137c0d64361/t354.gif",
"http://xc4.xanga.com/0dcf01f7c0d40358/t351.gif",
"http://x13.xanga.com/533f4b72d5c3353663767/t3156.gif",
"http://x6d.xanga.com/317f527ad033153663771/t345.gif",
"http://x3e.xanga.com/a53f7364d523353663766/t7157.gif",
"http://xe0.xanga.com/3a9e2a7654452417180/t6840.gif",
"http://x22.xanga.com/4c80576a182b5417177/t402392.gif",
"http://x2c.xanga.com/67802517431b2417173/t97942.gif",
"http://xb0.xanga.com/92216635494a6417170/t385882.gif",
"http://x26.xanga.com/0ee8113512c31417169/t402388.gif",
"http://xd9.xanga.com/a0bf5777c54455640/t5591.gif",
"http://xd6.xanga.com/8960464b664b4417167/t402386.gif",
"http://x05.xanga.com/4e40472b30db4417165/t280937.gif",
"http://x95.xanga.com/d1ec21f7c0d72363/t356.gif",
"http://x32.xanga.com/145a36547923553666756/t35980707.gif",
"http://xe7.xanga.com/b46e460a19654417243/t402452.gif",
"http://x67.xanga.com/ea8f416a6253053663761/t5589.gif");
// *** number of smileys that will be displayed per row
var maxNumberOfSmileysPerRow = 10;
// *** button size in pixels
var buttonSize = 40;
// preloading images
var preloadedImages = new Array(realSmileys.length);
for (i = 0; i < preloadedImages.length; ++i)
{
preloadedImages[i] = new Image();
preloadedImages[i].src = realSmileys[i];
}
var allTableData = document.getElementsByTagName('td');
var indx;
var smiley;
var replacement;
for (var i = 0 ; i < allTableData.length ; ++i )
{
for ( var n = 0 ; n < textSmileys.length; ++n )
{
if ((allTableData[i].innerHTML.toUpperCase().indexOf('TABLE') == -1) &&
(allTableData[i].innerHTML.indexOf('previewHTML()') == -1))
{
indx = allTableData[i].innerHTML.indexOf(textSmileys[n]);
if (indx != -1)
{
while (indx != -1)
{
replacement = '';
indx = allTableData[i].innerHTML.indexOf(textSmileys[n]);
smiley = ''
replacement = allTableData[i].innerHTML.replace(textSmileys[n],smiley);
allTableData[i].innerHTML = replacement;
}
}
}
}
}
if (document.getElementById('idSmileyBar'))
{
var smileyCollection = new Array(realSmileys.length);
var smileyBar = '';
if (document.getElementById('htmleditor'))
{
for (i = 0; i < smileyCollection.length; ++i)
{
smileyCollection[i] = '';
}
}
else
{
for (i = 0; i < smileyCollection.length; ++i)
{
smileyCollection[i] = '';
}
}
for (i = 0; i < smileyCollection.length; ++i)
{
if (i != 0)
if ( (i/maxNumberOfSmileysPerRow).toString().indexOf('.') == -1)
smileyBar = smileyBar + ' ';
smileyBar = smileyBar + smileyCollection[i];
}
// add SmileyBar
infoLink = '' +
'Get Smiley Script Here
';
smileyBarHtml = ' Add Emoticons ' +
'Simply add emoticons to your comments by clicking them! ' +
infoLink + smileyBar + '