Re: Change for absolute URLS

  •  07-10-2008, 3:03 PM

    Re: Change for absolute URLS

    I tried:
    <%
      Dim editor
      Set editor = New CuteEditor
      editor.ID = "conteudo"
      editor.Text = objTextos("conteudo")
      editor.FilesPath = "editor/CuteEditor_Files"
      editor.AutoConfigure = "default"
      editor.EditorBodyStyle = "font:normal 12px arial;"
      editor.EditorWysiwygModeCss = "/editor/asp.css"
      editor.EditorURLType = Absolute
      editor.Draw()
    %>
    and gave the following error:
    Object doesn't support this property or method: 'Absolute.EditorURLType'
    __________________________________________________________________________
    and tried:
    <%
      Dim editor
      Set editor = New CuteEditor
      editor.ID = "conteudo"
      editor.Text = objTextos("conteudo")
      editor.FilesPath = "editor/CuteEditor_Files"
      editor.AutoConfigure = "default"
      editor.EditorBodyStyle = "font:normal 12px arial;"
      editor.EditorWysiwygModeCss = "/editor/asp.css"
      editor.URLType = Absolute
      editor.Draw()
    %>
    and to use images of the editor continue Linking / uploads / image.gif
View Complete Thread