Re: Command 'hyperlink' Is Not Supported Or Not Implemented

  •  10-29-2009, 11:46 PM

    Re: Command 'hyperlink' Is Not Supported Or Not Implemented

    Hi,
     
    You can put this after editor :
     
    function CuteEditor_OnCommand(editor,command,ui,value)
    {
      //handle the command by yourself
     if(command=="hyperlink")
     {
      InsertHyperlink();
      return true;
     }
     return false;
    }
    Regards,
    Terry
     
View Complete Thread