Each page is represented by a page node. Each page node has a few attributes. You need to have at least 4 pages - covers + two pages in the middle. You can use different file formats as pages: graphic formats (JPG, PNG, GIF) and SWF files.
- path - it define the page source - the path to the page file (image or SWF).
- style - it specifies the page type. If you want a standard single page, you can leave this attribute blank or don't include it at all:
- double - your page will be interpreted as double which mean that the image applied in the src attribute will be displayed on both pages. (you can only use images as double pages).
- video - it will display a video file (flv format). The video player will be automatically added to the page. The page will also need a bg image behind. You will also have to define the video path.
- table - if you have chosen this page style the page will be used as the Table of contents for the book. For the table pages you can specify:
<page path="pages/Book/cover.jpg" />
<page path="pages/Book/page01.jpg" style="video" videoPath="pages/Book/video4.flv" duration="4.26" width="328" height="240"/>
<page path="pages/Book/page02.swf"/>
<page path="pages/Book/page03.swf"/>
<page path="pages/Book/page04.jpg" large="pages/Book/page04-large.jpg" style="double"/>
<page path="pages/Book/page05.jpg"/>
<page path="pages/Book/lastpage.jpg"/>