Forum Discussion
Embedded PDF is blurry / El PDF incrustado está borroso
- 2 years ago
Hello Everyone!
I'm happy to share that we have released Storyline 360 version 78 (Build 3.78.30680.0)!
Included in this release is the fix for the bug: HTML5: Web Objects With Images Are Blurry.
Now all you need to do is update Storyline 360 in your Articulate 360 desktop app on your computer. You'll find our step-by-step instructions here.
Please let us know if you have any questions by reaching out to our Support Engineers directly.
Have a great day!
Jürgen thank you very much for locating the problem, now it is as an end user I see two options.
1.- The articulate development team add an option to enable or disable scaling to the embedded web object options
2..- Add a java script function in the slide to remove the scale attribute from the webobject class and scale the content.
Jürgen muchas gracias por localizar el inconveniente, ahora es como usuario final veo dos opciones.
1.- Que El equipo de desarrollo de articúlate agregue a las opciones de objeto web insertado una opción para habilitar o deshabilitar el escalado.
2..- Agregar una función java script para quitar el atributo de escala a la clase webobject y escalar el contenido.
document.querySelector(".webobject").style.transform = "";
document.querySelector(".webobject").style.width = "100%";
document.querySelector(".webobject").style.height = "100%";