Skip to main content

Slides Required

Key name: Slides
Element type: Array
Status: Required

Contains all the slides that will be displayed to the user. See the Slides section to learn how to use slides.

Keys

NameTypeRequired
ContainersBorderColorDictionary (Color)
HidePreviousButtonBoolean
HideNextButtonBoolean
ContainersArray (Container)Required

Detail

ContainersBorderColor

Type: Dictionary (Color)
Explanation: Default color used for the border of all the containers in the slide.

HidePreviousButton

Type: Boolean
Default: false
Explanation: If true, the navigation previous button will be hidden when this slide is shown.

HideNextButton

Type: Boolean
Default: false
Explanation: If true, the navigation next button will be hidden when this slide is shown.

Containers Required

Type: Array (Container)
Explanation: Specify here the containers of the slide. The order of the containers in the array will determine their horizontal order when displayed.

Example

Display a single slide with one container and one component in the container. The component is a TextComponent to display text.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ... -->
<key>Slides</key>
<array>
<dict>
<key>Containers</key>
<array>
<dict>
<key>Components</key>
<array>
<dict>
<key>Type</key>
<string>Text</string>
<key>Text</key>
<string>Welcome to ACME Inc!</string>
</dict>
</array>
</dict>
</array>
</dict>
</array>
<!-- ... -->
</dict>
</plist>