1

(71 replies, posted in Feature requests)

..and about "emoticon":

       function emoticon(text) {
                if (document.post.message.createTextRange && document.post.message.caretPos) {
                        var caretPos = document.post.message.caretPos;
                        caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
                        document.post.message.focus();
                } else {
                        document.post.message.value  += text;
                        document.post.message.focus();
                }
        }

2

(71 replies, posted in Feature requests)

can you add this thing:
clicking on the username will add such code into quick_answer field

[b]username[/b],

same thing present in AdvancedQuickReply for phpBB...
here is a code for this:

#-----[ FIND ]------------------------------------------
#
{postrow.POSTER_NAME}

#
#-----[ REPLACE WITH ]------------------------------------
#
<a href="javascript:emoticon('[b]{postrow.POSTER_NAME}[/b], ')">{postrow.POSTER_NAME}</a>

3

(71 replies, posted in Feature requests)

can i create hidden forums?(visible and post-able only for specific groups of users)