Preview of word document

I have word document template saved in bubble DB.
I want to use that document template and preview on the page.
I use html tag with

`

I have iframe tag in html editor , but I am getting ā€œAccess deniedā€ error.
This is my html tag - <iframe src=ā€˜https:Current cell’s File’s File’s URL?embedded=true’ width=ā€˜100%’ height=ā€˜100%’ frameborder=ā€˜0’

Yes, you can display a Word document inside an iframe in a Bubble app, but not directly using the .doc or .docx file URL, because browsers don’t natively render Word files.

To make it work, you need to use an online document viewer like Microsoft Office Online or Google Docs Viewer to embed the document properly.

Microsoft Office Online Viewer Option

<iframe 
  src="https://view.officeapps.live.com/op/embed.aspx?src=Current cell's File's URL:formatted as URL" 
  width="100%" 
  height="600px" 
  frameborder="0">
</iframe>
1 Like

I changed the iframe attributes but still getting ā€œno preview availableā€.

It works because I am doing exactly that in an app.

Debug

  1. Copy the url and paste into a browser tab to see if it works.
  2. Check the url of the file to see if the document can be accessed.

I was able to get it. thank you!