How to embed Processing with Minim into html?

95 Views Asked by At

I'm trying to embed the Processing that contains Minim into html. It reads the code but nothing showed up.

Thank you !

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>A LOAD OF WAFFLE</title>
    <script type="text/javascript" src="processing.js"></script>
    <script type="text/javascript" src="minim.js"></script>
</head>
    <style>
        .html {
            background-color: smokewhite;
        }
    </style>

<body>
<!--<script>
    </script> -->
<script src="BorisPiano.pde"></script>
</body>
</html>
0

There are 0 best solutions below