true or false values. Setting to true adds a doprdown menulist to the left side of the aggregator toolbar. When setting this variable to true you also need to add menuItems[n] and menuItemsValue[n] defintions in the menuItems section
Setting default_uri="false" causes reader.xul to load the about:blank uri whch is a blank window. Setting default_uri="http://www.mozilla.org"; loads the mozilla.org page. Any valid uri can be used.
true or false values. Setting new_buttons="true" tells reader.js to iterate over the toolbarButtonsLabel[n], toolbarButtonsAction[n], toolbarButtonsSrc[n] arrays to build the buttons defined by those array items.
true or false values. Setting the SlideShow_create_shortmsg="true" tells reader_logic.js to add a text widget above the reader toolbar and add the value given in the SlideShow_short_msg variable to it. This is good for any application of the aggregator, not only for slideshows.
true or false values. Setting SlideShow_create="true" tells reader_logic.js to read the SlideShow[n], SlideShowLabel[n] array elements and read the other variables needed to create a slideshow.
A short, one line text message to give the user some information about the content of the aggregator toolbar. Only used if the SlideShow_create_shortmsg is set to true.
true or false values. Setting SlideShow_create_menu="true" tells reader_logic.js to read the SlideShow[n], SlideShowLabel[n] array elements and build a dropdown menulist containing these values. If SlideShowLabel[n] is not defined then the value, menuitem, will come from the value of SlideShow[n]. The SlideShow menulist items are links to the individual slides defined in SlideShow[n].
true or false values. Setting SlideShow_toggle_wanted="true" tells reader_logic.js to add a button to the aggregator toolbar that can start/stop the automatic cycling of the slideshow. Has no purpose if the SlideShow_cycle_count="0"
numeric value. Setting SlideShow_cycle_count="0" tells reader_logic.js to not iterate over the SlideShow[n] array. Setting SlideShow_cycle_count to a value greater than zero tells reader_logic.js to iterate over the SlideShow[n] array elements after a defined passage of time. One minute = 60000, one second = 1000
The first element, menuItems[0] and menuItemsValue[0], of the array is used for the initial label of the main menu
menuItems[1] = "Kiosk Installation";menuItems[n] holds the value that is used for the menuitem lables in the main menu. menuItemsValue[n] holds the command to execute when the menuitem is clicked. menuItemsValue[n] could hold a value such as menuItemsValue[10] = "location='xul-docs/slide_show.xul'"; which would causse aggregator to exit and the browser to load the uri given in the javascript statement
toolbarButtonsLabel[n] holds the value of the button label. toolbarButtonsAction[n] holds the javascript function to call when the button is clicked
toolbarButtonsLabel[1] = "Previous Frame";Here is a button defintion with a label of 'Previous Frame' and an action of SlideShow_back()
toolbarButtonsLabel[2] = "Quit this SlideShow";Here is a button definition using the toolbarButtonsSRC[n] array which holds the png image that will be used for the button face, it can be any valid image type that mozilla can display, jpeg, gif, etc
The SlideShow[0] array element is always a descriptive string that is used as the initial slideshow dropdown menu label if SlideShow_create_menu="true".
SlideShow[1] = "http://www.mozilla.org/mailnews/presentations/mailapp/slide1.html";The slideshow slide defintions begin at SlideShow[1] array element and holds a uri. The SlideShowLabel[1] defines the menuitem label. There can be as many SlideShow[n], SlideShowLabel[n] pairs as needed. Also if the SlideShowLabel[n] is not defined for a given SlideShow[n] definition then if SlideShow_create_menu="true" the value in SlideShow[n] will be used for the menuitem label