thank you for your help...
that at least gives me a starting point into how to add more
I figured out how to change them
add your smilies into this folder
frontend/view/default/image/smilies
and then in
backend/model/layout_form/smilies.php
(or whatever you renamed your backend folder to)
find
Code:
public function getSmilies()
{
$smilies = array();
$smilies['smile'] = $this->getImage('smile.png');
$smilies['sad'] = $this->getImage('sad.png');
$smilies['huh'] = $this->getImage('huh.png');
$smilies['laugh'] = $this->getImage('laugh.png');
$smilies['mad'] = $this->getImage('mad.png');
$smilies['tongue'] = $this->getImage('tongue.png');
$smilies['cry'] = $this->getImage('cry.png');
$smilies['grin'] = $this->getImage('grin.png');
$smilies['wink'] = $this->getImage('wink.png');
$smilies['scared'] = $this->getImage('scared.png');
$smilies['cool'] = $this->getImage('cool.png');
$smilies['sleep'] = $this->getImage('sleep.png');
$smilies['blush'] = $this->getImage('blush.png');
$smilies['confused'] = $this->getImage('confused.png');
$smilies['shocked'] = $this->getImage('shocked.png');
return $smilies;
}
replace the smilies .png's with whatever the ones you want to use
for example I changed
Code:
$smilies['smile'] = $this->getImage('smile.png');
to
Code:
$smilies['smile'] = $this->getImage('happy.gif');
now I just need to figure out where the sprite sheet is called at so I can fix all of that