Just a comment Joseph, this message should be posted on a java programming
forum, as this is for JSP.
I'll help you understand the error:
> > clicker.java:15: cannot resolve symbol
^
This means the problem is in line 15 of clicker.java
> > clicker.java:15: cannot resolve symbol
^
In this case this means there's a method not found for a given class...
> > symbol : method addActionListner (clicker)
.... method addActionListener(clicker)...
> > location: class java.awt.Button
> > butto1.addActionListner(this)
.... for class java.awt.Button, butto1 in your code
Solution: the method isn't addActionListner, it's addActionListener, you
missed the 'e'
Hope this helps,
Luis Javier
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets