How do i add buttons?
-
i am new at java and i was wondering how i add a button preferably a costume one to this code. i was also wondering how i add a picture to the background of this screen. Here is my code. import java.awt.Canvas; import java.awt.Color; import javax.swing.JFrame; public class lancher extends Canvas { private static final long serialVersionUID = 1L; public static final int WIDTH = 800; public static final int HIGHT = 400; public static final String TITLE = "fighter 1.0"; public static void main(String[] args) { System.out.println("main running"); // window for launcher lancher game = new lancher(); JFrame frame = new JFrame(); frame.add(game); frame.pack(); frame.setTitle(TITLE); frame.setDefaultCloseOperation(JFram… frame.setSize(WIDTH, HIGHT); frame.setLocationRelativeTo(null); frame.setResizable(true); frame.setVisible(true); frame.setBackground(Color.green); System.out.println("running"); } }
-
Answer:
alls you need is a button pin and string. and then you put it where you want it and sew the little bugger on there
Robert David at Yahoo! Answers Visit the source
Related Q & A:
- How do I add custom attributes to javascript tags in Wordpress?Best solution by WordPress
- How can I add icon in tabs?Best solution by Stack Overflow
- How Can I add Latitude, Longitude dynamically in Javascript?Best solution by Stack Overflow
- I want to add my personal photos. how can i add it.
- How can I add local whether everytime I open the yahoo page?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.