Hello Tamarian,
i have create a bbcode Table Hack and before i will share it here i must figure out the same problem.
In vb3.07 it works all correctly - now in vb3.5 i don?t know the correct js-code to tranfer it to the message Area in wysiwyg editor.
here is my code from 3.07 - have you any ideas about the correct code for vb3.5 ?
Code:
var bname = navigator.appName;
if (bname == "Microsoft Internet Explorer")
{
var newins = opener.document.frames["htmlwindow"].innerHTML + insert;
opener.document.frames["htmlwindow"].innerHTML = newins;
opener.document.frames["htmlwindow"].focus();
self.close();
}
else
{
var newins = opener.htmlbox.body.innerHTML + insert;
opener.htmlbox.body.innerHTML = newins;
opener.htmlbox.body.focus();
self.close();
}
:ermm: