Unity Muse reversed chat

Muse chat is being written in reverse, anyone having this issue?

i have the same issue, the cursor is jumping, after typing or leave any key, directly to the front of the line. and sometimes it loses the focus from the input field.

Same issue here

to help myself, i use a chrome extension to add javascript to the muse chat page.

in case u r interested in that, u coulkd also use my script, thats not perfect but it sets the cursor back to the end of the input field after typing. u can’t type to fast, but ur text isnt revered anymore with it.

function attachInputHandler(textarea) {
  if (textarea.id === "chatInput") {
    let isTyping = false;

    textarea.addEventListener('input', function() {
      isTyping = true;
    });

    textarea.addEventListener('keyup', function(event) {
      if (!isTyping) {
        const valueLength = textarea.value.length;
        textarea.setSelectionRange(valueLength, valueLength);
      }
      isTyping = false;
    });

    textarea.addEventListener('blur', function() {
      isTyping = false;
    });
  }
}

const observer = new MutationObserver((mutations, obs) => {
  for (let mutation of mutations) {
    for (let node of mutation.addedNodes) {
      if (node.nodeType === Node.ELEMENT_NODE) {
        if (node.tagName.toLowerCase() === 'textarea') {
          attachInputHandler(node);
        }
        let textareas = node.querySelectorAll('textarea');
        for (let textarea of textareas) {
          attachInputHandler(textarea);
        }
      }
    }
  }
});

observer.observe(document.body, {
  childList: true,
  subtree: true
});

just grab any extention for chrome where u can add javascript to a website, choose jQuery in it, to provide that my script is working and u r good to go.

as long as there is no official fix, that should help. :slight_smile:

same issue here :confused:

Hi all, We seem to be having some issues with our input field both with reversed and not allowing input - will keep you posted in this thread:

Best, Martina