Ok, so all I want to do is generate a new ActionEvent... the code I got for performing that event goes something like this (from a popular example):
public void actionPerformed(ActionEvent e ) { if (e.getSource()==go){ if (!timer.isRunning()) { timer.start(); } } /* ... */ } I can generate ActionEvents from a timer or button, but how do I generate one by hand? Code / examples / links appreciated. Dave =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".