Forum Discussion
KatieEngelmann-
2 years agoCommunity Member
Forcing Web Objects to Stay in Slide in v. 3.82
Due to some limitations with the LMS I use, I have to use version 3.82 of Storyline (the November 2023 version).
I'm trying to create a course where users can view a PDF that's housed on a webpage...
Jürgen_Schoene_
2 years agoCommunity Member
here is an example to integate external pdf in a web object (created with SL 3.82)
https://360.articulate.com/review/content/ec31c3ea-d7eb-4f0e-bd9b-09b6d2ede338/review
version 1: with link to external pdf
settings:
version 2: with a local index.html
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<style>
object {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<object data="https://pdfobject.com/pdf/sample.pdf#view=fitH" type="application/pdf"></object>
</body>
</html>
settings:
both versions should work