Discussions
Is it possible to add the code to the avatar
last year by Hayato Shinohara
In Interactive Avatar, is it possible to add the following code to the avatar that operates with "Integrate" → "Embed in HTML"?
window.addEventListener("message", (event) => { if (event.data.action === "getText") { const textContent = document.body.innerText; event.source.postMessage(textContent, event.origin); } });