Home > Programming, Thesis Project > Javascript with MaxMSP 01

Javascript with MaxMSP 01

July 28th, 2008

If you saw my crazy patch in the “Data to jit.gl.text2d 02″, you will agree why I want to use Javascript to coding multiple text fields.
Below are the patch and coding that I tried to create texts with javascript and MaxMSP:
javascript and MaxMSP01
jmfile
maoweitext01.js
Basically, I created jit.gl.text3d, the jitter object, inside of javascript and this time I also create a array of string.

var jtext3d = new JitterObject(”jit.gl.text3d”, “sfighter”);
.
.
var texts = ["Why", "does", "never", "work", "?", "how", "it", "because", "nothing", "is", "easy"];
then I get the data of people’s movement and sound for MaxMSP and sent to javascript to control the texts movement.

Here is the result:
javascript and MaxMSP02

Programming, Thesis Project

Comments are closed.