product icon

Cómo iniciar la descarga de applets

    Los artículos relacionados con la personalización están redactados para una audiencia técnica con experiencia en el desarrollo web. Se requieren conocimientos de HTML, CSS y JavaScript.

    Archivo a editar: LanguagesForChatOnlyMode.js

    var ic_hic_demo_timer = null;
    ic_hic_demo_timer = setInterval(ic_hic_demo_timer_checkobject, 100);
    function ic_hic_demo_timer_checkobject()
    {
      if ((ICObject != null) && (ICObject.pMainContentArea != null))
      {
        clearInterval(ic_hic_demo_timer);
        ICObject.DownloadButton = document.createElement("div");
        ICObject.DownloadButton.className = "demoButton";
        ICObject.DownloadButton.onclick = function () { ICObject.startAppletDownload(); }
        ICObject.DownloadButton.innerHTML = "Start
    Applet
    Download"; ICObject.pMainContentArea.appendChild(ICObject.DownloadButton); } }

    Archivo a editar: InstantChat.css

    .demoButton
    {
      position: absolute;
      left: 94px;
      top: 32px;
      width: 50px;
      height: 43px;
      text-align: center;
      cursor: pointer;
      background-color: red;
      z-index: 2000;
    }
    Article last updated: 27 September, 2022