Adam,
Thank you for your reply, but that didn't work. Can you get it to work with just a simple example? I can't even get it to work with just a simple example like i gave above. Just in case i'm missing something in my $editor definition here is what i have in my code:
//***********************************************************
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Height=600;
$editor->Width=650;
$editor->ImageGalleryPath = "/images";
$editor->URLType = "Absolute";
$editor->CustomAddons = "<img title=\"Add Coupon Section\" class=\"CuteEditorButton\" onmouseover=\"CuteEditor_ButtonCommandOver(this)\" onmouseout=\"CuteEditor_ButtonCommandOut(this)\" onmousedown=\"CuteEditor_ButtonCommandDown(this)\" onmouseup=\"CuteEditor_ButtonCommandUp(this)\" ondragstart=\"CuteEditor_CancelEvent()\" Command=\"MyCmd\" src=\"CuteEditor_Files/Images/coupon.gif\" />";
$editor->ConfigurationPath="/CuteEditor_Files/Configuration/myTools.config";
$editor->RemoveTBODYTag=true;
$editor->BreakElement="Br";
$editor->ToggleBorder=true;
$editor->Text=$html;
$editor->FilesPath="CuteEditor_Files";
$editor->Draw();
$ClientID=$editor->ClientID();
$editor=null;
//***************************************************************
Thanks again for your time and reply.