BasicGame doesn't allow neither input keys nor mouse

Hello!

I was reading a tutorial and I created a project in jMonkeyEngine SDK 3.0 from BasicGame project. I didn’t open Main.java, I just run the project, accepted the default display settings and everything was ok.

Now I wanted to create another project from BasicGame project, again. I didn’t open Main.java, I just run the project, accepted the default display settings and the app doesn’t allow neither input keys (W,A,S,D) nor mouse!

I’m trying this on Windows 7 Ultimate x64. I tried the same on Windows XP Professional and both projects work well.
In main() method, I must write something like this for it to work:
[java]AppSettings settings = new AppSettings(true);
settings.setTitle(“Primer Juego”);
Main app = new Main();
app.setSettings(settings);
app.start();[/java]

But what if I don’t want to write that?
What could be the problem? :frowning: