How to add new symbol to the special characters

Last post 06-28-2004, 11:50 AM by Adam. 1 replies.
Sort Posts: Previous Next
  •  06-23-2004, 8:42 AM 1080

    How to add new symbol to the special characters

    Using CuteEditor for a laboratory research project requires special symbols that do not appear in the current popup.

     
    Can new items be added or is there an alternative set that can be used.
     
    Minimum is to add greek symbols for alpha,beta etc
  •  06-28-2004, 11:50 AM 1118 in reply to 1080

    Re: How to add new symbol to the special characters

    FrankMoroney,

     
    We use the following code to generate the special characters. You need to make some changes to add your own character set.
     

    <script language="javascript">

        function writeChars()

        {

            var tds=22;

            var str="";

            for(var i=33;i<256;)

            {

                document.write('<tr>');

                for(var j=0;j<=tds;j++)

                {

                    document.write('<td style=\"align: left; height: 20; font-size: 12px; FONT-FAMILY: Verdana;\" bgcolor=white         width=\"18\" align=center onClick=\"getchar(this)\" onmouseover=\"spcOver(this)\" onmouseout=\"spcOut(this)\" title=\"" + Chars[i] + "\" >');

                    document.write('&#'+i+';');

                    document.write('</td>');

                    i++;

                };

                document.write('</tr>');

            };

        }

    </script>


    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

View as RSS news feed in XML