Wow, thanks!
Already off to a great start :D
I'm stuck - hahaha!
How do I modify the thing to get it to work with webstart. At first glance this is what I have....
<? header ("Content-Type: application/x-java-jnlp-file"); ?>
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="
http://bookexchange.rh.rit.edu/games" href="avalanche.jnlp">
<information>
<title>Avalanche!</title>
<vendor>DAM</vendor>
<homepage href="
http://bookexchange.rh.rit.edu/games"/>
<description>Avalanche</description>
<offline-allowed/>
</information>
<resources>
<j2se href="
http://java.sun.com/products/autodl/j2se" version="1.4+"/>
<jar href="avalanche.jar"/>
<property name="webstarted" value="true" />
</resources>
<application-desc main-class="Avalanche" />
</jnlp>
Not working though. Any suggestions?? Tells me "nullpointer exception". My game has NEVER reported that before and still doesn't when I play on my system.
Update: Says "can't load image." Any generic reasons for that happening? Runs fine when compiled and ran on my machine. Something to do with images in a jar??
Images are saved in their own folder and the whole folder is then moved over to the jar.
Thanks!