Re: MAC --> Firefox frameset issues with hyperlink, change colors or upload

  •  09-22-2006, 8:53 AM

    Re: MAC --> Firefox frameset issues with hyperlink, change colors or upload

    Hey Adam, Here is the link for the example [http://24.239.40.15/Samples/Library/cuteSoft/frame.asp]
    Here is my configuration:
    Dim m_objCuteEditor33, strTemp
    Set m_objCuteEditor33 = New CuteEditor
    m_objCuteEditor33.FilesPath = "/Console/CuteEditor"
    m_objCuteEditor33.ThemeType = "Office2003"
    m_objCuteEditor33.ImageGalleryPath = "/Media"
    m_objCuteEditor33.FilesGalleryPath = "/Media"
    m_objCuteEditor33.FlashGalleryPath = "/Media"
    m_objCuteEditor33.TemplateGalleryPath = "/Media"
    m_objCuteEditor33.MediaGalleryPath = "/Media"
    m_objCuteEditor33.ActiveTab ="Edit"
    m_objCuteEditor33.AllowEditServerSideCode = false
    m_objCuteEditor33.RemoveTBODYTag = true
    m_objCuteEditor33.RemoveServerNamesFromUrl = true
    m_objCuteEditor33.EditCompleteDocument = false  ' will display html and body in the code true/false
    m_objCuteEditor33.EnableBrowserContextMenu = false ' not supported yet
    m_objCuteEditor33.EnableStripScriptTags  = false
    m_objCuteEditor33.FocusOnLoad = false
    m_objCuteEditor33.ID = "Editor1"
    m_objCuteEditor33.Text = "TESTING"
    m_objCuteEditor33.Width = 600
    m_objCuteEditor33.Height =300
    strTemp = strTemp & m_objCuteEditor33.GetString() 'Draw or GetString
    Response.Write  strTemp
    
    
View Complete Thread