Run applet from web page

You can launch the applet using the web page by clicking on the link / button. I mean onclick links / button, I want to run an applet that should not be embedded in a web page. It should run outside the web page. Thanks in advance!!

using javascript i did this thing but i want it to be like msgbox popup message.

<script src="http://www.java.com/js/deployJava.js"></script> <script> function showApplet() { var attributes = {code:'myform.form.class', archive:'applet.jar', width:710, height:540} ; var parameters = {fontSize:16} ; var version = '1.6' ; deployJava.runApplet(attributes, parameters, version); } </script> <button onclick="javascript:showApplet()" value="Show" ></button> 
0
source share
1 answer

Launch the applet using Java Web Start . Because the architecture is Plug-In 2, JWS applets can be embedded. But they can be launched free floating since the advent of JWS.

+1
source

Source: https://habr.com/ru/post/1401631/


All Articles