Do any of you have any suggestions regarding where I could upload my processing sketch online(it’s not working in openprocessing)? I want to show my Mom who is across the country and not very computer savvy what I’ve been working on and for her to be able to interact with it as well but not have to download anything.
Are you using Java mode? If so, then you might be able to use Processing.js to deploy.
Note that this will not work if you use a Java library, Java-specific code, or Processing 3 features.
Here is some more info on the different kinds of Processing:
If you’re stuck in Java mode, then you can deploy as an application and send that to your mom, but she’s going to have to download it for that to work.
Deploy it as an application. This would require a download, and would not be embedded in a webpage.
Use a JavaScript library instead of Minim. Then you’d be able to embed it in a webpage.
Get rid of Minim, and any other dependencies that don’t work in JavaScript.
This has been discussed previously, so I’d recommend doing a google search or searching in the forum for “processing.js minim” for a bunch of results. But basically it comes down to the three bullet points above.