Move a Custom Button

  •  03-02-2006, 3:40 PM

    Move a Custom Button

    Below is my code to create a custom button:

            <%
                Dim editor
                Set editor = New CuteEditor
                       
                editor.ID = "body"
                editor.Text = ""
                editor.FilesPath = "CuteEditor_Files"
                editor.FilesPath = "/byow/CuteEditor_Files"
                editor.ConfigurationPath = "/byow/CuteEditor_Files/my_config.config"
                editor.CustomAddons = "<A onclick=""launch_gallery();""><img class=""CuteEditorButton"" type=""btn"" src='myimage.gif' border=0 alt=""Insert Clip Art"" /></a>"
               
                editor.Width = 740
                editor.Height = 400
               
                editor.Draw()
            %>

    How do I reposition my 'editor.CustomAddons' button to after my Cut button?
View Complete Thread