[javascript-dev] JS String to Max Message
Emmanuel Jourdan
c74-mailinglists at e--j.com
Wed Oct 17 20:42:57 MDT 2007
- Previous message: [javascript-dev] JS String to Max Message
- Next message: [javascript-dev] JS String to Max Message
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 18 oct. 07, at 10:53, keith manlove wrote: > outlet(0, "scale " + videoplane[i][0] + " " + videoplane[i][1]); You need to send an array or separate the elements with a coma because outlet() can do that: outlet(0, "scale", videoplane[i][0], videoplane[i][1]); When you use "+" with string in JavaScript it just concatenate the strings to make an unique one. HTH, ej
- Previous message: [javascript-dev] JS String to Max Message
- Next message: [javascript-dev] JS String to Max Message
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
