If you are a lighting designer, lighting retailer, advertising light box manufacturer, or other lighting enthusiast, we will try our best to contribute to your unlimited lighting creativity.
All orders are delivered as usual with fast shipping.
Glediator Software, which stands for “Graphical LED Installation AnimaTOR“, is a small piece of software used to control LED matrix and LED stripe installations. Solderlab created this software to work with their matrix hardware.
Table of Contents
How to install Glediator Software
You have to have the Java runtime installed on your machine. Then unzip the Glediator download into a folder. Inside is a list folder with the Gladiator_V2.jar file or something very close to that. Double-click it; it should run if the Java runtime environment is installed correctly.
Click on the “glediator_v2.0.3.rar” link and download it to a folder on your local hard drive. I suggest that you create an install folder in the following location: “C:\Program Files (x86)\Glediator” and extract all the files from the “glediator_v2.0.3.rar” file you just downloaded. You can start Glediator with a double click on “Glediator.jar” by using the command “java -jar Glediator.jar” from within a console or by creating a simple batch file containing the following commands:
java -jar “Glediator_V2.jar” exit Save the file with a name like “Glediator.bat” in the folder “C:\Program Files (x86)\Glediator\“. A shortcut can be added to the desktop for the convenient starting of the Glediator program. Glediator Layout.
Build Output Description
When you build a Java application project that has a primary class, the IDE automatically copies all of the JAR files on the project's classpath to your project's dist/lib folder. The IDE also adds each of the JAR files to the Class-Path element in the application's JAR file manifest file (MANIFEST.MF).
To run the project from the command line, go to the dist folder and type the following:
java -jar “Glediator_V2.jar”
To distribute this project, zip up the dist folder (including the lib folder) and distribute the ZIP file.
If two JAR files on the project classpath have the same name, only the first JAR file is copied to the lib folder.
Only JAR files are copied to the lib folder. If the classpath contains other types of files or folders, these files and folders are not copied.
If a library on the project's classpath also has a Class-Path element specified in the manifest, the content of the Class-Path element has to be on the project's runtime path.
To set a main class in a standard Java project, right-click the project node. in the Projects window choose Properties. Then, click Run and type in the class name in the Main Class field. Alternatively, you can manually type the class name in the manifest's Main-Class element.