StarWarsConfigurator

Follow these instructions to configure the applet with the StarWarsConfigurator. If you are not experienced with Java-Applets see also the StarWarsScroller-Manual!



Contents



General information about the Configurator

Next you see a screenshot of the program with descriptions of some portions of the interface:



To set a value click on the lower list and edit the value in the edit field - then push the SET THIS VALUE button. You can also use the helper-dialog (where available) to set up the value... Check it out.
By clicking on the Test it! button the program will create a file called output.html which includes the actual configuration.

The Configurator works on Win95/98/NT!


Back to top...


How to configure

Follow these steps to configure the applet:


Step 1: Have a look at the example configurations from this package

Step 2: Make your own configuration

Step 3: Edit parameters
After you worked through these 3 steps go on to the next chapter: Finishing the project.

Additionally you can save this project to be able to change some things later... Click on Save and edit a name for the project file.


Back to top...


Finishing the project

Assuming you have configured the applet, edited your text and are ready to go for your homepage integration, follow these instructions:


Push the Test it! button to update all changes. Now have a look at the output.html in the StarWarsConfigurator directory. It should look like this: (this is a demo-output! yours should look different - the values and the filenames of the font and textfile should differ from this version)





Now copy the whole applet block from the output.html and paste it into your final HTML-file (that is the web-page you want to have it in!).
After this is done you are ready to upload everything to your webspace. You will have to upload following FOUR (!!!!) files:

Some words about directories:

The easiest way is to upload everything to the same folder in your webspace. If this is not possible because you maybe have a lame webspace, you will have to add some paths to the params. For example...

if the class-file is in a folder called "images" and all other files are in the root directory you will have to add the codebase directive to the applet tag like shown here:

original applet tag was:
<applet code="StarWarsScroller.class" width=400 height=250>
after adding the codebase directive:
<applet codebase="images/" code="StarWarsScroller.class" width=400 height=250>

if your text and fontfiles are also moved to the images directory, then you would have to add the relative path from the html-file to them:

original parameters:
    <param name="fontfile"         value="font02.txt">
    <param name="txtfile"          value="example1.txt">
fixed parameters:
    <param name="fontfile"         value="images/font02.txt">
    <param name="txtfile"          value="images/example1.txt">
...if the applet turns red and tells you something about "...check your files..." then it is not crashed - you have made something wrong while uploading the files or setting the paths!!!


Back to top...