I have Eclipse set up and working,
and have successfully controlled two motors via Lejos previously (alpha 2).
I've upgraded to alpha 3, and I am now trying a different example.
I've copied, and slightly morphed, the code inside this constructor
from the Moonbuggy example.
I am assuming that the icommand code did not change--but
Eclipse is complaining about the NXTCommand.open() method not being
defined in the icommand code. I can't figure out where it is defined, having browsed the class file and the source file (using icommand version 0.5).
Where is that defined?
Is this a problem with static initialization, or something like that?
public DrivenAlong(String title)
{
super(title);
NXTCommand.open();
Motor.B.setSpeed(900);
Motor.C.setSpeed(900);
this.setBounds(0, 0, 300, 50);
this.addKeyListener(this);
this.setVisible(true);
}

