applet

How to make applet animation?

I try to make applet for array including operations of insertion/removal/search. For insertion and removal, it's easy: once user click the 'insert' or 'remove' button, just update the array, and call repaint to redraw the array. However search is different, it's an animation, once the search button is clicked, I want to start from the ...

Applet class loader cannot find one of the classes in the jar

I get the ff. error in Java Console occassionally: Exception in thread "thread applet-my.package.MyApplet-10" java.lang.NoClassDefFoundError: another/package/SomeClass at my.package.MyApplet.init(MyApplet.java:95) at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source) at java.lang.Thread.run(Unknown...

JavaScript Calling a Java Function Doesn't Work in Safari

Hi, I have problem with calling a java function from javascript. Although it works for other browsers like IE, Firefox and chrome, it doesn't in safari. Here is my code. <HTML> <HEAD> <TITLE>Simple Applet Example</TITLE> <SCRIPT> function callSpin() { document.getElementById("myslotmachine").spin(); } </SCRIPT> </HEAD> <BODY> ...

Java and Axis cameras

Hello all, I am writing a Java applet to display live images from Axis cameras. Is there a good library I can download that abstracts camera image fetching using VAPIX? Thanks. ...

Applet served by Java Web Start, resources requested to WEB Server before look in the JAR files

Hi everybody, I am new here and I apologize for my bad English. I have a little problem with an Applet class served by Java Web Start technology. I have some platform dependent JAR files which Web Start download correctly, but when I get the content by getResourceAsStream(String fileName) method of ClassLoader object, first is made a G...

Java Applet CPU restrictions?

Is there some type of cap as to how much CPU an applet can use? Or will my code run just as fast as a standard java program? ...

Best open source irc chat applet

Do you know a good, easy to customize and open source java applet for irc chat? ...

JWindow in JApplet

hi! i would like to ask for further information and suggestion about this problem. I am making an JApplet and I want to put a splash screen. I used JWindow. In the JWindow I put a JLabel...just a simple label so as to know if the label would appear in the JWindow. Unfortunately, the jlabel did not appear. I tried it as a simple applicat...

javafx applet javascrit and max os x

hi i'm writing a javafx applet. in the page i use javascript function to change some applet properties. when i try this applet on windows or solaris or linux it works fine. when i open the same page on mac os x it diplay an error message live app.script not found. any ideas? ...

Bypassing built-in browser authentication when making HTTP calls from embedded Applet.

I have a simple web page with an embedded Java applet. The applet makes HTTP calls to different Axis Cameras who all share the same authentication (e.g. username, password). I am passing the user name and password to the Java code upon launch of the applet - no problem. When I run from within NetBeans with the applet viewer, I get full...

Can I run a webpage-embedded Java Applet on the iPhone's web browser?

Can I run a Java applet that's been embedded in an or HTML tag on an iPhone? I don't mean as an App but actually through its browser. ...

some code which extends applet

Hi this is my code (sorry for putting this) really I need your help would you please help me that how can I remove applet from this(init method)I don't like use applet also I am beginner I have done something but it doesn't make it OK. thanks public class RedGreenGriffin extends Applet { protected Canvas3D c1 = new Canvas3D(Simpl...

Java Applet flickers on focusLost and focusGained

I have a Java JApplet embedded in a web page. The JApplet window contains a single instance of a class that extends JPanel - same size as the JApplet. The applet can spawn pop-up windows (JFrames) when the user clicks a button that's in the panel. Every time I click on a button to pop-up a window, my applet flickers as it repaints. It ...

JMF installation in Fedora Linux. Anyone could help me on this?

Hi! I am installing JMF in linux fedora. I already installed it. I already put the env variables in my /etc/profile.d/jmf.sh. Here is what i put in my jmf.sh in /etc/profile.d export JMFHOME=/home/ws21/java/JMF-2.1.1e export CLASSPATH=$JMFHOME/lib/jmf.jar:.:${CLASSPATH} export LD_LIBRARY_PATH=$JMFHOME/lib:$LD_LIBRARY_PATH but ...

Incompatible magic value 1008813135

I am writing a Java applet and embedding it in a web page. It used to run Mac and Windows in different browsers without problem. I was using NetBeans on the Mac to build the .jar file the applet used. For some reason or another I decided to load the project on the Windows' NetBeans - I started getting the following error on the Windows ...

How can I draw an image in applet by taking float values as arguments?

I want to move an image from one point to another. I can do that using drawImage and repaint methods only when the slope is 45 or 0. But how to move the image between specific cordinates? ...

Taking a "screenshot" of a java applet

No. Not pressing PRT Screen. But here is what I want. And I need to know if it can be done and by what means :D Okay so I have a java applet that runs and displays a walking man. I need it so when I access a script (in some web scripting language) it takes a "screenshot" of that applet and then saves it on the server. Is this possible? ...

Where do Java Applets live?

I'm trying to figure out where java Applets that I run from the browser get downloaded to. I'm using Firefox 3.0 on Windows XP with Java 1.6 if that makes any difference. From the Java Control Panel on the toolbar, I can access "Temporary Internet Files -> Settings" to find the Java cache. From there I can show the resources and see a f...

want to hide or remove or replace comment "Applet Started"

hii to all I want to hide or display or replace comment 'Applet Started' which display at left bottom of the applet start page how can i do that? ...

Reset Java Applet on Reload

I need to quit firefox and restart it in order for the applet to be refreshed... its anoying since i'm still programming it an the class files changes... am i missing some codes which makes it unable to refresh the applet and still take the one from the cache??? So I have a .jar applet in my website, a simulation game that spawns army ...