Functions | |
void | _AddScriptToList (string Title, string Filename) |
Add a CLUScript filename to the list of presentation slides. | |
void | _ClearScriptList (void) |
Clear all CLUScript filenames in the script list. |
|
Add a CLUScript filename to the list of presentation slides.
For example, the first slide could look like this. // Make sure you only create the list of slides // when this file has just been loaded. if (ExecMode == EM_NEW) { // Clear the script list. _ClearScriptList(); // Now add all the slides _AddScriptToList("The first slide", "Slide1.clu"); _AddScriptToList("And yet another one", "Slide2.clu"); } // Here you could now draw the title of your talk // ... |
|
Clear all CLUScript filenames in the script list.
|