How to disable "auto thumbnail" and "Image Editor" ? (2007-05-07 Version)

Last post 05-11-2007, 1:14 AM by coverboy. 2 replies.
Sort Posts: Previous Next
  •  05-09-2007, 8:31 PM 29460

    How to disable "auto thumbnail" and "Image Editor" ? (2007-05-07 Version)

    How to disable "auto thumbnail" and "Image Editor" ? (2007-05-07 Version)
  •  05-10-2007, 1:55 AM 29474 in reply to 29460

    Re: How to disable "auto thumbnail" and "Image Editor" ? (2007-05-07 Version)

    Open CuteSoft_Client\CuteEditor\Dialogs\InsertImage.aspx file and find the following code:
     
    <img src="../Load.ashx?type=image&file=resize.gif" id="img_AutoThumbnail" onclick="AutoThumbnail();"
           alt="[[AutoThumbnail]]" class="dialogButton" onmouseover="CuteEditor_ColorPicker_ButtonOver(this);" />
          <% if(secset.AllowModify) {%>
          <img class="dialogButton" onmouseover="CuteEditor_ColorPicker_ButtonOver(this);" id="img_ImageEditor"
           src="../Load.ashx?type=image&file=imageeditor.gif" onclick="ImageEditor();" alt="[[ImageEditor]]" />
          <%
           }
           else
           {
           %>
          <img class="CuteEditorButtonDisabled" onmouseover="CuteEditor_ColorPicker_ButtonOver(this);"
           src="../Load.ashx?type=image&file=imageeditor.gif" alt="[[ImageEditor]]" />
          <%
           }
           %>
     
     
    And change it to:
     
    <img src="../Load.ashx?type=image&file=resize.gif" id="img_AutoThumbnail"  alt="[[AutoThumbnail]]" class="CuteEditorButtonDisabled"  onmouseover="CuteEditor_ColorPicker_ButtonOver(this);" />
    <img class="CuteEditorButtonDisabled" onmouseover="CuteEditor_ColorPicker_ButtonOver(this);"  src="../Load.ashx?type=image&file=imageeditor.gif" alt="[[ImageEditor]]" />

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  05-11-2007, 1:14 AM 29535 in reply to 29474

    Re: How to disable "auto thumbnail" and "Image Editor" ? (2007-05-07 Version)

    Thanks for your help..
View as RSS news feed in XML