¿Hay alguna manera de ejecutar Ruffle sin conexión? Probé este método con ruffle.js pero no funcionó porque el archivo: protocal no es compatible.
<html> <head> <title>Goime 500</title> </head> <body> <div id="container"> </div> <script src="ruffle.js"></script> <script> window.RufflePlayer = window.RufflePlayer || {}; window.addEventListener("load", (event) => { const ruffle = window.RufflePlayer.newest(); const player = ruffle.createPlayer(); const container = document.getElementById("container"); container.appendChild(player); player.load({ url: "goime.swf", backgroundColor: "#000", }); player.style.width = "450px"; player.style.height = "450px"; }); </script> </body> </html>Un iframe no funcionaría porque es para uso fuera de línea y no en línea. Cualquier ayuda sería apreciada. ¡Gracias! :D