Discussions

Ask a Question
Back to All

Is it possible to add the code to the avatar

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); } });