We are about to switch to a new forum software. Until then we have removed the registration on this forum.
The little webapp I want to create needs to have textfields taht are not popups but really into the sketch itself. Is there any way I can do that with processingjs? Are there any library that can help the process ? Thank you !
Answers
For cross-mode compatibility I've made this library:
http://forum.Processing.org/two/discussion/12532/windowjs-cross-mode-alert-confirm-prompt-other-js-api-for-java
But since it's based on JOptionPane.showInputDialog() for Java Mode and prompt() in JS Mode, it "pops-up".
For non-popup inputs, you're better off using p5.js' createInput() instead:
http://p5js.org/reference/#/p5/createInput
Ok I will try that ! Thank you very much again GoToLoop.