membersound
membersound

Reputation: 86855

How to build graphical-interactive applet?

I wonder how to build an interactive browser application, and wether java-applet is the right technology for the following:

So: the whole plate must be interactive, and also the elements on it. How can I best build these kind of application? Which technology/framework/libraries should I not miss to look at?

Many thanks!

Upvotes: 0

Views: 195

Answers (1)

martinez314
martinez314

Reputation: 12332

It's possible to do it with Java, but keep in mind that the trend has for a long time now been to move away from applets. Many browsers (e.g., iOS and currently Chrome on Mac) won't run Java at all. And many more disable it by default.

Your best option is HTML5/JavaScript. Have a look at the HTML5 Canvas element. With it you can draw your shapes and then manage user interaction with JavaScript.

Upvotes: 1

Related Questions