Topic: How to change smilies set with this extension
Be my guineapig;
Download the Custom Smilies Extension Beta
Question: How do you think I should handle rows where smilies take up 3/4 of width (at the moment it right aligns them;
a. should I left align it aswell under B I U etc or
b. work on a Tab that only shows them if you hover over it ( will need help with that)
edited above
original post below
******************************************************************
I'm working on an extension which overrides the default smilies with a completely new set;
based on include/parser.php line 19
($hook = get_hook('ps_start')) ? eval($hook) : null;
What needs changing here [in addition to location (in colors)] being changed?
<hook id="ps_start"><![CDATA[
//this adds the custom set of smilies
$smilies = array(':)' => 'smile.png', '=)' => 'smile.png', ':|' => 'neutral.png');
<img src="'.$ext_info['path'].'/img/smile.png"/>
]]></hook>
How do I include the img src location in green above so that normal location red doesn't show?
Thanks for any pointers