Forum Discussion
Inserting PDF Editable Fields into a Rise 360 course
I am making a course in Rise and I have been asked to insert editable PDF fields into the course so learners can take notes in the course while they do the webinar.
Hi Wendy! Have you created the fillable PDF yet? If not, follow these steps from Adobe's help center to create a fillable PDF: https://helpx.adobe.com/acrobat/how-to/convert-word-excel-paper-pdf-forms.html
Next, host the PDF on a web server so you can get a sharable link to the PDF. You can put the link into a multimedia embed block to embed the PDF right in your Rise 360 lesson.
- PaulMoodyCommunity Member
Does this allow the learner fill in the fields directly on the rise page?
- KrisTaylor-a3c1Community Member
Hi Alyssa, I am trying to do this right now, I have tried to upload to google drive, and pasting the link, either the straight link or as an iframe and it's not working, any ideas?
Hi Paul! If the PDF is embedded in your lesson using a multimedia embed block, then the learner can fill in the fields directly on the Rise lesson page.
- JakeHendersonCommunity Member
This doesnt work on mobile devices, any help would be appreciated here
- hazelBStaff
Hi Jake!
How does your embedded fillable PDF behave when viewed on a mobile device?
- JakeHendersonCommunity Member
- LeaSAgatoStaff
Hi Kris! If it's possible, can you share the link/iframe code you're using? We'd be happy to help troubleshoot it for you.
- NieschaFarrisCommunity Member
HI Lea,
This one works for me (var iframeElements = document.getElementsByTagName("iframe");
iframeElements[0].contentWindow.generatePDF();)but I am trying to get it to point to the one below.
[Yesterday 4:11 PM] Farris, Niescha
<iframe id="iframepdf" src=https://cnp.learn.com/files/PDF/My_Course_Notes.pdf"files/example.pdf"></iframe>
- KarlMullerCommunity Member
Hi,
You are referring to two PDF documents at the same time and that won't work.
It should be something like this:
<iframe id="iframepdf" src=https://cnp.learn.com/files/PDF/example.pdf"></iframe>
- NieschaFarrisCommunity Member
Perfect, thank you!
- NinaLill-4e5e36Community Member
Hi all. I created the fillable Acrobat PDF form and uploaded it to a Google Drive as you all indicated to do above. However, when I embed it into the Rise course, you can scroll and Zoom into it but you can't click to open it and fill out the form. Am I missing something>
Hi Nina,
Happy to look into this for you!
Have you tried testing your Rise 360 course using different browsers to see if the behavior is the same across all of them? Inserting a fillable PDF form in Rise should be possible by using Multimedia > Embed, and then adding the direct link to the PDF file in your Google Drive.
If this is already the setup that you're using, have you tried inserting the PDF using an iframe to see if this makes a difference? Here's a sample code that you can use for your embed block:
<iframe src="<GOOGLE DRIVE LINK TO PDF HERE>" height=900 width=800></iframe>
Let me know if using an iframe works for you!
- AlysonEaglen-a0Community Member
I just attempted to use this code you shared and it didn't work for me. Any other suggestions?