0
votes
1answer
34 views

A main menu for class A extends Applet

Hi i have made a game in java that extends applet. The game works perfectly fine but one of the requirements of this assignment is that there should be a menu. For example: As the program is run a ...
0
votes
1answer
20 views

How can I put some code that makes a sound in an applet?

I'm making a clock applet, and I'm almost done, but there's still one thing I need to do. I want to make the clock "tick" every time the second hand moves, but I can't figure out where to put the code ...
0
votes
0answers
24 views

Why won't my avatar move.

This is the code. The box will not move even if I click a directional key. So, I want to know what's going on. Can you help me? Thanks in advance! import java.awt.*; import javax.swing.*; ...
-3
votes
0answers
17 views

Needing to generate tiles for top down, tiles not drawing in paint [closed]

import java.awt.*; import java.applet.*; import java.util.*; import java.awt.Image; import java.awt.Graphics; import java.io.*; import javax.imageio.*; public class Sandbox extends Applet { ...
-1
votes
1answer
31 views

Stop flickering/repainting

So I have an java.applet.Applet that is embedded into a JFrame. The applet uses a java.awt.Canvas for drawing. The code would be quite a lot for me to post and there is no "Small" examples but here is ...
-1
votes
1answer
35 views

Getting the error “ Cannot find symbol ” on getdocumentBase()

Despite I import the applet library, NetBeans cannot recognize and use getDocumentBase() in my code, I have my html file within my project and all other required files as well, here is a part of my ...
0
votes
0answers
40 views

Java applet - Safety Car Bridge (Beginner)

this is about the safety car bridge java applet. A bridge over a river is only wide enough to permit a single lane of traffic. Consequently, cars can only move concurrently if they are moving in the ...
1
vote
2answers
38 views

Getting Applet not initialized error

is everything is right in my programme?? When i run it the a screen appears but it says that Applet is not initialized import java.applet.Applet; import java.awt.*; import javax.swing.*; public ...
0
votes
1answer
58 views

Java Thread handling

I am trying to make a stoplight that performs certain tasks after a button is clicked. What this stoplight is supposed to do is change from green to yellow after 50 secs, from yellow to red after 10 ...
0
votes
1answer
46 views

Invocation target exception on Java applet

I'm finishing up a project for my first java class, and I'm creating an applet to be embedded into HTML. I'm getting an Invocation target exception and I can't figure it out. All of my classes are in ...
0
votes
1answer
22 views

I cant reference a class inside of paint(graphics g)

Every time I try to reference the Drawer class I made within the pain method, it gives a null pointer exception. However, outside of the paint function the class works perfectly. The game class I made ...
0
votes
0answers
50 views

How to use robot class

I have a sort of animation going on in which a rectangle is increasing and decreasing in size........what i want to do here is detect the color of a particular location through Robot() class but its ...
0
votes
1answer
33 views

Dragging a file from a JList to a Windows Explorer window

First I just want to admit that I'm not the sharpest Java developer out there. My strengths/experiences are mostly in JavaScript, etc. browsers. I've been asked to create an applet that can be used ...
0
votes
3answers
117 views

What is the difference between the applet and JFrame [closed]

I am suppose to teach somebody java who is used to applet while I always use JFrame, what are majors differences between those two in practical usage?
0
votes
1answer
48 views

Beginner Java Applet — Cannot get sound file to playback

I am working on a beginner java project, and I want a sound to play right when you open the java applet. I have put an .au file in "C:\Program Files (x86)\BlueJ" -- this is where the bluej exe is (I ...
0
votes
1answer
51 views

Beginner Java Program— cannot get key pressed to work

I am starting out with Java and I have a problem. When people click "a" on the java applet, I want it to draw a yellow rectangle and if they press anything else it draws a black rectangle but nothing ...
0
votes
0answers
36 views

How to make a horizontal moving applet panel?

I want to implement a game similar to Copter. Currently I'm trying to develop it's background but can someone help me how to make a horizontally (left side) moving panel inside an applet? This is the ...
0
votes
1answer
92 views

Java Applet adding thread makes while loop infinite

I am trying to make a program that generates 25 random ovals then draw a ball and make it bounce, I got it somewhat done, I generated the ovals and I got the ball to move but when I added the thread ...
0
votes
2answers
55 views

Java Applet to BufferedImage [duplicate]

I created a JFrame that loads an external applet for a game like so: //Setup everything for the Stub.. Below adds the stub to the applet and creates it. DownloadFile(new URL(World + "/" + Archive), ...
0
votes
1answer
86 views

Button In java to click once do one thing, and when clicked after that do another thing

I have a button and I want it to do something when its pressed once, and something when its pressed after that. I tried putting the if(e.getSource) command once, then after the same command but It ...
-1
votes
3answers
354 views

JOptionPane YES NO OPTION

I got an JOptionPane and yes and no buttons. But, whichever button you click it still exists. HELP! Heres the code: int dialogButton = JOptionPane.YES_NO_OPTION; ...
0
votes
1answer
48 views

Java Button adds label when clicked after being reized or dragged or something

I have a simple code here which adds a label after being clicked. it works fine, but in order to the label to be added i have to drag or reize the window after clicking the button. Here is my code: ...
0
votes
1answer
122 views

how to make animation app in java using applet,awt and swing?

i want to make an app in java which will run on browsers like following links: http://phet.colorado.edu/sims/geometric-optics/geometric-optics_en.html ...
0
votes
0answers
77 views

How do you display a Applet in a Jpanel java

package net.rstown; import java.applet.Applet; import java.applet.AppletContext; import java.applet.AppletStub; import java.io.IOException; import java.net.URL; import java.net.URLClassLoader; import ...
0
votes
0answers
104 views

Java Applet becomes a blank white screen when it's done

All my applet does is draw something, step by step. My update() block goes something like: public void update(Graphics g) { if (!done) { while (!doneDrawing) { ...
-2
votes
1answer
163 views

Using the paint or repaint method to paint lines over an applet JAVA

I am wondering if it's possible to paint lines over an applet. I am loading the applet from an external source, but I'd like to paint lines where the cursor is on the screen. Can someone tell me how ...
-1
votes
1answer
103 views

Java Awt Pen Tool: Graphic disappeared [closed]

I'll try to implement a Java Applet with a Pen Tool. When i start the applet i can draw correctly my lines on the window by pressing and releasing the mouse. After few seconds disappear everything. ...
0
votes
1answer
70 views

Java Applet Display Issue

The problem is with this program which calculates correctly and does output the information correctly, is that while it outputs the correct values, it does not display them correctly. They are ...
0
votes
0answers
50 views

AWT- In what order are update() and paint() methods called?

I'm reading Herbert Schildt's Java 2 5e. In the chapter on Applets, he says, The default version of update() first fills an applet with the default background color and then calls paint(). So I ...
0
votes
1answer
201 views

java.security.AccessControlException when using java.awt.Robot class for screen capture in applet

I require to capture a web page screen to store it on client's machine whenever client clicks print screen button. For this I googled and got that by embedding an applet with signature(trusted applet) ...
0
votes
1answer
70 views

Set path in Java applet

How do I draw an image from a file in an applet? import java.applet.Applet; import java.awt.Graphics; import java.awt.Image; /* <applet code = "DisplayImageExample" width = 500 height = ...
0
votes
0answers
211 views

Use Canvas to Paint user input letters onto an applet in different colors

I need to code an applet that allows the user to choose a color from a combo box, then click inside the applet and type a letter which is then painted in the applet in the chosen color. The user can ...
0
votes
1answer
426 views

Java- Adding Radio Buttons using AWT?

This program has 2 radio buttons. 1: for a circle and 2: for outputting a square. This program is basically designed to either output a cirlce or square based off a radio button group. My issue is ...
0
votes
1answer
382 views

Java- AWT Applets- How to change the size of a shape on my program?

This program is designed to take a shape decided by the user and change the size of it based on input. I have two issues. One is that the user will have to input it as a string yet the size value ...
1
vote
3answers
133 views

Java applets which layout suitable for this interface?

Which is the most suitable layout for this interface? I have tried FlowLayout, but can't get the SUBMIT button place in the correct position.
-3
votes
3answers
130 views

Java Frame showing Nothing but blank Space [closed]

I have successful compiled and ran the following code but the applet windows shows nothing except blank space,what could be the problem? Im Not trying to create an applet here im trying to create a ...
-1
votes
3answers
104 views

Java Layout Management not showing Panels

I have a simple java applet,but the panel is not appearing even after adding it,i have set the gridlayout for the panel and the the default layout for Jpanel. import java.io.*; import java.awt.*; ...
2
votes
2answers
100 views

How to repaint Java Applet

I have the following code that is a simple Applet that converts Celsius to Fahrenheit. If a correct number is entered and the button is clicked, the temperature is converted and displayed no issues. ...
0
votes
0answers
29 views

repaint applet image

I created a card game using JApplet. When a card is clicked it moves to another location and then I call the repaint();. The problem is, after repainting, the card is displayed on the previous ...
0
votes
0answers
213 views

java swing client server problematic application design

i'm developing swing client server application in java using netbeans its a project from vb and making it in java, i've programmed some initial code like created gui, runned a thread for connection, ...
-1
votes
3answers
155 views

Access java jTextField from main method

I've created GUI in swing using netbeans, in it, the structure hirarcy of the java file is below, public class NewJFrame extends javax.swing.JFrame private void initComponents --> ...
0
votes
1answer
81 views

Java ClassNotFoundException html error

I need your helps once again. I have started programming with Java quite recently and I'm trying to create my first applet. I am just using the most basic code: package firstofthings; import ...
0
votes
1answer
186 views

How to integrate a Frame (jframe) into a jsp

Iam New to Awt,Jframe. I have to integrate a Frame window (containg code to display a whiteboard) into a jsp page. can you please helpout in this regard to integrate an applet iam using <applet ...
-1
votes
2answers
44 views

Call g returns a Null Exception? [closed]

public class delaunay extends Applet implements Runnable { public Graphics g; public void paint( Graphics g ) { displaytri(po[eee],arr[0].p1,arr[0].p2); } public void ...
-2
votes
1answer
194 views

How to draw a String to an applet screen at the point of mouse click?

EDIT: Okay, so I've managed to get it working now with the help of a friend. =) I am currently creating a Java applet. The applet works by taking text input from the user and displaying it to the ...
2
votes
0answers
53 views

Multiple mouses connected to computer, how to determine the exact mouse that triggered the event in Applet?

I am planning to code a buzzer for a event. There will be multiple teams and each team will have a mouse to click when they know the answer, now I have to determine the mouse that clicked first. All ...
2
votes
2answers
127 views

Text onto images via drag and drop in Applets

I need to show an image in a java applet, with a text element (label) to move to a point chosen by the user. Is it possible by dragging and dropping the text over the image? What methods would I need ...
1
vote
3answers
239 views

Using java applet methods

I have an applet which has 2 methods that I want to use. On the first method, I am getting client printer list. I want to use this printer list on my HTML page in a combo. The user is expected to ...
-2
votes
2answers
96 views

Does the Java FileDialog work on Mac?

I have created a web applet in Java which uses the FileDialog. The file dialog works fine on Windows, I am wondering if it is cross platform. Does it work on Mac and Linux? Or do you need to specify ...
0
votes
2answers
146 views

Java Applet game double buffering broke with switch statement

I'm just starting out trying to make games and I did a HelloWorld Applet, then tested my idea for scrolling on it, and eventually it started turning into a "helicopter" style game. Now everything ...

1 2 3 4