Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi, I am using this javascript :http://www.java.com/js/deployJava.js

My javascript code:
JavaScript
function Test()
{
	var attributes = {codebase:'http://java.sun.com/products/plugin/1.5.0/demos/jfc/Java2D',
                      code:'java2d.Java2DemoApplet.class',
                      archive:'Java2Demo.jar',
                      width:710, height:540} ;
    var parameters = {fontSize:16} ;
    var version = jsver ;
    deployJava.setInstallerType('kernel');
   // include any required packages as shown below
    deployJava.setAdditionalPackages('javax.swing, javax.xml');
    deployJava.runApplet(attributes, parameters, version);
}

This working good to download jvm. Now I want to add a progress bar in my html code:
HTML
<progress value="0" max="100">0 %</progress>


Now, I want to show this progess while I am downloading the JVM. Please help me.
Posted

1 solution

Does it expose any events? If not the good bet would be to show a non-deterministic (round etc) progress bar.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900