Hello,
I'm having a nightmare trying to get processing to load on internet explorer 8.
I've managed to get IE8 to read the canvas tag using excanvas.js to get around the lack of html 5 problem. However when I try to run a processing canvas I get the error "Object doesn't support this action".
Please help.
My script is
<! DOCTYPE html>
<html>
<head>
<!--[if IE]><script type="text/javascript" src="excanvas.js"></script><![endif]-->
<Meta charset = "UTF-8" />
<script type="text/javascript" src="processing-1.4.1.js"></script>
</head>
<body >
<canvas data-processing-sources="sample.pjs" id = "sample"> </canvas>
</body>
</html>
1