Forum Discussion
Web Objects blurry, especially text
- 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!
since Storyline 3.79 the JavaScript patch is no longer necessary
deselect "Scale with slide"
https://360.articulate.com/review/content/d097cb64-22ff-4a8b-a218-0f4eced4f7a6/review
If this does not work for you, upload a .story file with the problem as an attachment here
Thanks Jürgen. De-selecting "scale with slide" sorts out the quality issue. However, now I've lost the bottom half of my PDF scroll bar as seen here:
https://360.articulate.com/review/content/ef12a725-4850-4ee5-bfdb-5b6757e0837e/review.
I've uploaded my .story file so that you can see what I've done. Slide 1.1 is my output slide. Slides 1.2 and 1.3 explain the process I used to embed the PDF and the html code. I don't know if there's an easier way?
Thanks very much for your help!
- Jürgen_Schoene_11 months agoCommunity Member
your index.html is very strange - here is a much simpler version of the file
<!DOCTYPE html>
<html lang="en">
<head>
<style>
object {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<object data="CompletedPESTLE.pdf#view=fitH" type="application/pdf"></object>
</body>
</html>(the pdf not integrated with an iframe, but with a html object tag)