|
Is it possible to run Java applets in the Android WebKit Browser? If not does anyone know when java applets will be supported?
Started by John Cooper on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Android does not have a full Java VM, and therefore does not currently support Applets its not possible to run java applets in the Android Webkit Browser..
|
|
Everybody talks about Silverlight and Flash and Flex and how cool etc...
Java applets are very similar to Silverlight and Flex, but Java applets exist since 1995 .
What is the reason we don't have any cool Java applet applications around?
My guesses so...
Started by Peter Gfader on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm not saying Java applets can't be used to make "cool is that microsoft....
JavaFX is comparable to Flash and Silverlight.
Applets are for code-intensive applications.
Java applets and the others are for different purposes.
|
|
When java was young, people were excited about writing applets. They were cool and popular, for a little while. Now, I never see them anymore. Instead we have flash, javascript, and a plethora of other web app-building technologies.
Why don't sites use...
Started by Tyler on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
I believe is the possibility to have a 'client....
There are Java applets here and there; definitely not widespread though.
To make an applet.
General purpose language.
I assume it's because java is a "real", ie.
applets.
|
Ask your Facebook Friends
|
I have a Java Applet application ( achart) on my php Webpage ... Problem here is the Java Applet takes more time to load ... I am thinking of replacing these applets with some similar technology but fast ... I am counting on Ajax... what are my other ...
Answer Snippets (Read the full thread at stackoverflow):
Alternatively....
Turn on applet tracing in the java control panel and you should.
If you have potentially greatly reduce your startup time.
Shrug Its the nature of the beast....
Java applets load slowly.
For some Java libraries.
|
|
Duplicate: JavaFX is now out: Are Applets and Java Desktop officially dead/dying? Why do applets have such a low adoption level?
Is it safe to say that if I create something as a java applet that it will be abhorred by all and die? Let us assume, just...
Started by johnny on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It'll make it much less attractive, that's for sure.
I actually see Java applets prettySlow loading times of Java, alien user interface will surely kill it.
I think this has a chance to lift up Applets from the dead.
|
|
Hello to all,
I am designing a psychology experiment with java applets. I have to make my java applets full screen. What is the best way of doing this and how can I do this.
Since I haven't been using java applets for 3 years(The last time I've used it...
Started by holydiver on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not a ....
Write an application that uses a JFrame or JWindow as its top-level container .
If you already have an appletThe obvious answer is don't use applets.
Applets are designed to be embedded in something else, usually a web page.
|
|
When I use Java applets, they tend to be slow, don't integrate very well with the browser environment and often require a few click throughs ("No, I don't want to give this unsigned application free reign of my hard disk").
So, I'm curious.
Are these ...
Started by David Wolever on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Some game sites, like popcap.com, use Java applets image uploader is a Java ....
A few things...
In high school I used to play a ton of Yahoo Games and I'm pretty sure those are all java applets of the old games here .
|
|
Hiding a Java applet using display: none causes firefox to kill the applet until it is visible again. It also seems to kill the applet if you position the applet out of view ie. position: absolute; left: -9999; Using visibility: hidden; will hide the ...
Started by wallacer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Safari 4, for example to the applet tab (at least....
The behaviour of applets while hidden is entirely browser-specific.
They do tricks.
Flash and other plugins have the same issue.
The issue isn't isolated to just Java applets.
|
|
Hi,
I want some suggestions.
I want to create a website with using Java Applets.
Could u pls suggest me if I am thinking in the right way or not? What are the problems (other than development) my site will have to face, mean like flash plugin, users having...
Started by Bhupi on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you heard about Servlets....
You can do this with applets if the applet.
Access the local file system.
Depending on what you are creating, using Java Applets can be a bit heavy for a simple website security restrictions, e.g.
|
|
I'm working on a project where we're using a Java applet for part of the UI (a map, specifically), but building the rest of the UI around the applet in HTML/JavaScript, communicating with the applet through LiveConnect/NPAPI. A little bizarre, I know,...
Started by Matthew Maravillas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For the first issue, how about trying
alert( $("#applet-id")[0].foo() );
For the second issue here unload events jQuery(window).bind("unload", function() { jQuery("*:not('applet, object')").add(document.
|