When I do an Export Applet (Processing 1.5.1) the resulting Index.html file seems to contain two bugs. Specifically, there are two lists that contain trailing commas. For example:
var attributes = {
code: 'TriangleSolver4.class',
archive: 'TriangleSolver4.jar,interfascia.jar,core.jar',
width: 800,
height: 700,
};
Note the comma after the number 700. Firefox and Chrome ignore it, but IE 8.0 halts with an error message. If I remove the two trailing commas, all three browsers are happy.
1