You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scott Cummings edited this page Oct 31, 2013
·
1 revision
##Book Config Property pages
Defines the specifics of the book.
###Properties
background [Object] - the color and/or image of the page.
sound [Object] - the background page sound.
content [Array] - an array of content objects.
###JSON Example
pages: {
content: [
{
type: "TextArea",
x: 10,
y: 30,
width: 80,
align: "left",
color: "#222222",
size: 28,
font: "Droid Serif",
text: "<font='Reenie Beanie'><size=6>This storybook will give examples of the functionality of the Storybook Engine. See the configuration files in the config folder to see how the examples were implemented."
},
{
type: "TextArea",
x: 0,
y: 95,
align: "center",
color: "#222222",
size: 18,
font: "Droid Serif",
text: "Page 1"
}
]
}