Slick Forums

Discuss the Slick 2D Library
It is currently Sat May 18, 2013 9:06 pm

All times are UTC




Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: Tue Mar 27, 2012 9:33 pm 
Offline

Joined: Tue Mar 27, 2012 9:18 pm
Posts: 1
I am trying to play with the examples that came with twl. When I run gameUIDemo i get this error:

java.lang.IllegalArgumentException: url is null
at de.matthiasmann.twl.theme.ThemeManager.createThemeManager(ThemeManager.java:148)
at gameui.GameUIDemo.main(GameUIDemo.java:66)

I have followed all the directions on the wiki under "Setting up your first project"

I am not sure why i am getting url is null because the xml file your example is trying to run is in the same directory as the java i am running.

There are two other files that have errors and they are in the test package (FadeFrame.java and SimpleTest.java), I only mention this because i am not sure if the problems are related.

I am useing netbeans

Thanks in advance for your help I was looking forward to useing twl after i learn it.


Top
 Profile  
 
PostPosted: Wed Mar 28, 2012 3:30 pm 
Offline
User avatar

Joined: Sat Jan 14, 2012 1:05 pm
Posts: 28
Location: Leipzig, Germany
Try this to load your theme:
Code:
    @Override
    protected URL getThemeURL() {
        try{
            File themePath = new File("simple.xml");
            return themePath.toURL();
        }catch(MalformedURLException e){
            e.printStackTrace();
        }
        return null;
    }

This should work for the moment but is not the intended way to load resources.
I think you need to put your resources into jars (in the classpath) to make the code in the example work.

_________________
team red


Top
 Profile  
 
PostPosted: Wed Mar 28, 2012 4:39 pm 
Offline
Slick Zombie

Joined: Fri Jan 29, 2010 7:02 pm
Posts: 1171
File.toURL() is deprecated. Use at least File.toURI().toURL()

_________________
TWL - The Themable Widget Library


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group