Slideshows

Slideshows

Creating a slideshow from a PDF

Notes

Method 1: From the Mediaboards menu

Method 2: From the add content menu

Method 3: Sharing the URL in the chat

Updating slideshow contents

Force slideshow HD quality

Adding actions to slides

Creating a slideshow from a PDF

There are several methods to create a 3D slideshow from a PDF

Notes

  • URL’s to PDF’s must end in .pdf
  • In order to create a slideshow, editor permissions are required
  • Updating the source pdf file will not update the slideshow in the 3d environment. Check the Updating the slideshow contents section to learn more.

Method 1: From the Mediaboards menu

Click on the pencil icon, then on Add Mediaboard.

Select the Slideshow option.

On the URL field, paste an url for your content. Click on Create.

The mediaboard will be automatically created. It will display a “rendering” temporary message while the PDF is converted to a slideshow.

Method 2: From the add content menu

Click on the Pencil icon / Add content menu item

Paste the URL to your PDF file and click import

Select slideshow from the media type selection popup

The mediaboard will be automatically created. It will display a “rendering” temporary message while the PDF is converted to a slideshow.

Method 3: Sharing the URL in the chat

In a multiuser experience, urls can be pasted into the chat.

A red pin icon will appear next to the url. Clicking on that icon will import that url into the 3D environment.

After clicking on the pin icon, select slideshow from the media type selection popup.

The mediaboard will be automatically created. It will display a “rendering” temporary message while the PDF is converted to a slideshow.

Updating slideshow contents

If a slideshow was created by converting any kind of file (for example, pdf), updating the source file will not update the slideshow in the 3d environment. The file will need to be processed again by doing the following:

Access the slideshow settings by going into edit mode or by clicking on the settings option from the slideshow menu. (Editor permissions are required)

Click on the Update slides button.

The button will change to reflect the status of the conversion. It might take up to 30 seconds for it to complete. When it’s completed, the button will turn green and show “Success” on it.

Force slideshow HD quality

In order to force a slideshow to use the HD quality (only advised when necessary, since this has an impact in performance and stability), this property needs to be added to the metadata field of the slideshow:

"slideshowImageQuality": "hd,ld"

Adding actions to slides

Actions can be configured to be executed when a determined slide is shown. The property “slideActions” must be added to the metadata field. It is an array of objects with the following properties:

  • slide (required): Slide number in which the action will be triggered
  • mode (optional, default null): Special rule for determining whether the action will trigger or not. Values:
  • onlyForwards: Action will only execute when the slide was reached from the previous one (by clicking the ‘next’ button)
  • onlyBackwards: Action will only execute when the slide was reached from the following one (by clicking the ‘previous’ button)
  • executeOnlyOnce: The action will only execute once in the session

Note: Actions don’t need to be configured to propagate themselves, as the slide will execute the action for all users.

This is a full example for a slideshow with actions

{
 
"slideshowImageQuality": "hd,ld",
 
"slideActions": [
   {
     
"slide": 2,
     
"action": {
       
"action": "displayNotification",
       
"message": "This will execute whenever we visit slide 2",
     }
   },
   {
     
"slide": 3,
     
"mode": "onlyBackwards",
     
"action": {
       
"action": "displayNotification",
       
"message": "This will only execute when going from 4 to 3"
     }
   },
   {
     
"slide": 3,
     
"mode": "onlyForwards",
     
"action": {
       
"action": "displayNotification",
       
"message": "This will only execute when going from 2 to 3"
     }
   },
   {
     
"slide": 4,
     
"executeOnlyOnce": true,
     
"action": {
       
"action": "displayNotification",
       
"message": "This will execute on slide 4. Only once"
     }
   }
 ],
 
"slides": {
   
"dd": [
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/dd/001.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/dd/002.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/dd/003.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/dd/004.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/dd/005.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/dd/006.png"
   ],
   
"hd": [
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/hd/001.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/hd/002.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/hd/003.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/hd/004.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/hd/005.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/hd/006.png"
   ],
   
"ld": [
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/ld/001.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/ld/002.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/ld/003.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/ld/004.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/ld/005.png",
     
"https://pdf-api.learnbrite.com/data/c64ef49c4d40fd192722f450bf737607e0f82cec9de90afc27604c03df2dcb60/images/ld/006.png"
   ]
 }
}

How useful was this article?

Click on a star to rate it!

We are sorry that this article was not useful for you!

Let us improve this article!

Tell us how we can improve this article?