HOWTO - Sashipa development
You wish to define the content of the loading window.
The content of the loading window can be defined in HTML format.
First a HTML code must be written. Most of HTML markups are available, but do not use style-sheet or JavaScript. Here is the HTML code used by the demonstration application:
<html>
<body bgcolor='#ffffdc'><center><font color='#5858d2'><b>
<br><br><br>
<font size=+2>Demo</font>
<br><br>
<i>Sashipa-Melba technology</i>
</b></font></center></body>
</html>
|
Before to insert this HTML code into your XML source, markup characters have to be transformed in order to not be parsed by the XML parser. Replace all '<' by '<' and possibly '>' by '>' :
<html>
<body bgcolor='#ffffdc'><center><font color='#5858d2'><b>
<br><br><br>
<font size=+2>Demo</font>
<br><br>
<i>Sashipa-Melba technology</i>
</b></font></center></body>
</html>
|
Now the HTML code is ready to be inserted in the Sashipa XML source. It can be added in the element guiStarting:
<guiStarting name='startingMain'>
<loadingScreen>
<loadingScreenContent type='html'>
<html>
<body bgcolor='#ffffdc'><center><font color='#5858d2'><b>
<br><br><br>
<font size=+2>Demo</font>
<br><br>
<i>Sashipa-Melba technology</i>
</b></font></center></body>
</html>
</loadingScreenContent>
</loadingScreen>
<mainScreenRef guiModule='modMain' screen='SMMain' />
</guiStarting>
|
Remarks: For the moment the only available type is 'html'.
Several guiStarting can be defined, for different guiInstances and/or different users.
© Copyright 2003 Sashipa-Melba Team. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License as much as this note clearly appears.