Results 1 to 5 of 5
Thread: Java Applet Gets Cut Off
- 10-31-2010, 05:19 PM #1
Member
- Join Date
- Oct 2010
- Posts
- 3
- Rep Power
- 0
Java Applet Gets Cut Off
My java applet is getting cut off on the bottom. I'm trying to use setSize to display the whole thing, but to no avail. I'll attach a screenshot and post the code below.
Java Code:package testapplet; import java.awt.*; import java.applet.*; /** * * @author jeffrey */ public class NewJApplet extends Applet { Button[][] boxes; /** * Initialization method that will be called after the applet is loaded * into the browser. */ public void init() { setLayout(null); setSize(300, 300); boxes = new Button[10][10]; for(int i = 0; i < 10; i++) { for(int j = 0; j < 10; j++) { boxes[i][j] = new Button("A"); boxes[i][j].setBounds(i*30, j*30, 30, 30); add(boxes[i][j]); } } } // TODO overwrite start(), stop() and destroy() methods }
-
I believe that you set the size of the applet in the HTML code that calls the applet.
- 10-31-2010, 05:48 PM #3
Member
- Join Date
- Oct 2010
- Posts
- 3
- Rep Power
- 0
Right now I'm just using the appletviewer though, it's not embedded in HTML.
- 10-31-2010, 06:15 PM #4
Member
- Join Date
- Oct 2010
- Posts
- 3
- Rep Power
- 0
It turns out NetBeans does use an html file to display applets. I modified this file's height and width parameters and now it works fine.
Thank you.
-
Cool, I'm glad that you solved it and that you've posted your solution. Please go into Thread Tools at the top and mark this thread "solved".
Best of luck!
Similar Threads
-
applet class inside java.applet.* or java.awt.*
By Manish87 in forum Java AppletsReplies: 1Last Post: 09-27-2010, 02:15 PM -
Help with java applet
By ketann in forum Java AppletsReplies: 0Last Post: 03-22-2010, 01:06 AM -
How do i fix this Java applet ??????
By danielmessick in forum Advanced JavaReplies: 6Last Post: 03-08-2010, 05:52 AM -
How do i fix this Java applet ??????
By danielmessick in forum JCreatorReplies: 1Last Post: 03-07-2010, 12:55 PM -
What're the differences between JSP, Java Script, and Java Applet?
By meili100 in forum New To JavaReplies: 3Last Post: 07-23-2008, 08:07 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks