How to serialize data from processing.js to rails application ?
Posted
by railscoder
on Stack Overflow
See other posts from Stack Overflow
or by railscoder
Published on 2010-03-17T12:41:45Z
Indexed on
2010/04/17
15:23 UTC
Read the original article
Hit count: 318
Hi
I am creating a simple canvas using processing.js , how to pass values from rails application to Processing.js
void drawBox(int bx, int by, int bs, int bs){
strokeWeight(3);
stroke(50,50,50);
// Test if the cursor is over the box
if (mouseX > bx-bs && mouseX < bx+bs &&
mouseY > by-bs && mouseY < by+bs) {
bover = true;
if(!locked) {
fill(181,213,255);
}
} else {
fill(255);
bover = false;
}
fill(192);
stroke(64);
roundRect(bx, by,80,30,10,10);
// put in text
if (!isRight) {
text("Box Value", x-size+5, y-5);
//Here i need to pass value from my controller
}
else {
text("Box Value", x+5, y-5);
//Here i need to pass value from my controller
}
}
Instead of static string "Box Value" , I need to pass the value from the ex @post.name through ajax
© Stack Overflow or respective owner