Files to edit:
Vbulletin_editor.js
Template Modifications:
editor_toolbar_standard
Open clientscript/Vbulletin_editor.js
at the bottom of the file look for:
PHP Code:
// #############################################################################
function open_smilie_window(x_width, y_width, wysiwyg, forumid)
{
if (typeof(forumid) == "undefined")
{
forumid = 0;
}
window.open("misc.php?" + SESSIONURL + "do=getsmilies&wysiwyg=" + wysiwyg + "&forumid=" + forumid, "smilies", "statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=" + x_width + ",height=" + y_width);
}
under add:
PHP Code:
// #############################################################################
function copyit(theField)
{
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}
then save.
<---------------------------------------------------------------------------------------->
Template Modifications:
open template editor_toolbar_standard
look for:
PHP Code:
<textarea name="message" rows="20" cols="60" wrap="virtual" style="width:$stylevar[messagewidth]; height:250px" tabindex="1">$newpost[message]</textarea>
Under add:
You can put the copy button in two ways with a normal text link or a regular button
for a text copy link:
PHP Code:
<A onclick="copyit('vbform.message')" href="#">Copy Text</a>
or
for a regular button:
PHP Code:
<input onclick="copyit('vbform.message')" type="button" value="Copy Text" name="cpy">
Your done.
it worked on my board perfect.
only way i got it to work is to have it be displayed on newthread and newreply as well.
plus i only added the copylink to the standerd editor