Loading...
Logo
Processing Forum
There are two things I want to do:

1) Use the mouse location from the html to draw on the processing sketch. I curently have the sketch drawng when the cursor is inside the sketch, but I want to draw regardless of where on the web page the cursor is. Can the sketch draw even when the cursor is not inside of the sketch? Is there a good way to pass the mouse x/y from the html as a variable into a processing sketch?

I know the below will grab the mouse location, would it work to name the .pde file in the function?

$("html") .mousemove(processingVariables);

function processingVariables(e) {
$("name of processing applet?").html(e.pageX);
$("name of processing applet?").html(e.pageY);
}


2) I want to have the sketch as a project in a portfolio site. Can the sketch receive the mouse data and draw even when it's not the selected project and visible? 

I'm new to processing and looking for some guidance and advice. Thank You!

Replies(2)

Moved to Processing with Other Languages which is the section in the current forum that contains questions related to Processing.js. In the new forum the sections will be clearer.

For now, see: https://forum.processing.org/topic/where-to-place-threads-and-other-forum-practices
two suggestions:

first, trying writing your sketches in the manner i've described here:


doing it this way will allow you to mix javascript right into your sketch.  you're already writing javascript anyway, so i say, why not?

if you insist on having your javascript sepparate from your sketch, you'll have to use the technique linked to here:

Making your sketch "see" javascript from Pomax's guide:  http://processingjs.org/articles/PomaxGuide.html#sketchtojs

I've never used that method so i can't be of any help as to it's implementation, but hopefully that can point you in the right direction.