Menu Bar Slide
Key name: MenuBarSlide
Element type: Dictionary
Status: Optional
Specify here the configuration of the slide you want to use when displaying the application with the "MenuBar" value for the OnScreen
key.
Keys
Name | Type | Required |
---|---|---|
Containers | Array (Dictionary) | Required |
Detail
Containers Required
Type: Array (Dictionary)
Explanation: Containers is an array of Dictionary items (containers). Each container can have the multiple parameters as explained here. The order of the containers in the array will determine their horizontal order when displayed.
Example
<?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>MenuBarSlide</key>
<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>
<!-- ... -->
</dict>
</plist>