signed applets load slower than javascript

I have a signed applet and i had problems with certifications but i solved them.

Now i have a new problem with the chat , it磗 when the page is load, javascript tries to get some variables from the applet but it has磏 load jet and javascript stops.

Is 1.5 slower than 1.4?

How can i solve it'?

[317 byte] By [rcazalillaa] at [2007-10-1 16:22:07]
# 1

In javascript you can use try and catch. When caught use setTimeout

var varOfTheApplet = null;

function callPublicMethodOfTheApplet(){

try{

varOfTheApplet = document.getElementById("idOfMyApplet").publicMethod();

}catch(e){

setTimeout("callPublicMethodOfTheApplet();",500);

}

}

harmmeijera at 2007-7-11 0:35:10 > top of Java-index,Security,Signed Applets...