Nope,
I followed your directions step by step. I DOES work with the standard editor, but not with the WYSYWYG editor that most of my users like more.
So....what I did, was add:
Code:
// #############################################################################
function copyit(theField)
{
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}
TO: BOTH vbulletin_wysiwyg.js AND vbulletin_editor.js(then uploaded)
Then added the button (and I also tried the TEXT version also) to the template of
editor_toolbar_wysiwyg.
The BUTTON show up fine just under the text area of the WYSIWYG editor(just like in your standard editor) but it just does not copy/highlight.
Any other ideas on why it isnt?
Quote:
Originally Posted by Johnny
the directions i gave you on the post i belieave is written clearly to understand on where to put everything,
or do you want the button to be displayed someplace instead of under the text area?
|