adding a "Processing" Java "applet" to a blog post
-
I am using WordPress on my server for blogging. I can add html to blog posts, embed video from youtube etc, embed flash.
How should i set up the HTML to add a processing “applet” to a blog post?
Works fine if I upload and navigate to the exported directory. I tried cutting and pasting the relevant HTML (below) from the index page, and adding the absolute path to the code. Did not work .
Do I need to use: URL.openStream? If so, how to set it up?
Thanks for reading!!
<script type="text/javascript" src="https://www.java.com/js/deployJava.js"></script> <script type="text/javascript"> /* <![CDATA[ */ var attributes = { code: 'https://mydomain.com/scripts/processing/sketch_oct28a/applet/sketch_oct28a.class', archive: 'https://mydomain.com/scripts/processing/sketch_oct28a/applet/sketch_oct28a.jar', width: 600, height: 400, image: 'https://mydomain.com/scripts/processing/sketch_oct28a/applet/loading.gif' }; var parameters = { }; var version = '1.5'; deployJava.runApplet(attributes, parameters, version); /* ]]> */ </script>
Here is the Processing applet it “working” with it’s self generated “exported HTML.
https://oliverwolfson.com/scripts/processing/sketch_oct28a/applet/
Here is the blog post which contains the HTML in my post above. The post is just blank, nothing shows up at all.
https://oliverwolfson.com/add-a-processing-applet-to-a-blog-post/
- The topic ‘adding a "Processing" Java "applet" to a blog post’ is closed to new replies.