Once I exported a program (in my case for win x32/64, if it matters), can I/how do I make the console visible while running it?
What I mean with console, to be clear, is that pointed by the giant red arrow.
It is not possible, AFAIK.
After export, you get a Windows GUI application, these applications doesn't output data to a console.
One mean I used is to use a kind of logger, appending text to a file.
Hm yeah, could expect this, thx for the code...any chance I can still create sorta textboxs or similar on the GUI and get my strings there? Would be easier for users yknow.
One thing only: the piece of that code I need is basically the void setup {...} + void draw{...} assuming that I don't need outputs based on mousepressed like in your example? I mean, the rest of the code displays on the console which is of no use for what I want, right?
Answers
It is not possible, AFAIK.
After export, you get a Windows GUI application, these applications doesn't output data to a console.
One mean I used is to use a kind of logger, appending text to a file.
http://bazaar.launchpad.net/~philho/+junk/Processing/view/head:/_SmallPrograms/Email/Logger.java
Hm yeah, could expect this, thx for the code...any chance I can still create sorta textboxs or similar on the GUI and get my strings there? Would be easier for users yknow.
Certainly. Just display it in the window using text().
Awesome, thank you.
One thing only: the piece of that code I need is basically the void setup {...} + void draw{...} assuming that I don't need outputs based on mousepressed like in your example? I mean, the rest of the code displays on the console which is of no use for what I want, right?
You can use ACM Java Task Force library ("acm.jar") in order to get a graphics console: B-)
http://www-cs-faculty.stanford.edu/~eroberts/jtf/
"library.properties":
name = acm category=Framework sentence=ACM Java Task Force authorList=[JTF](http://www-cs-faculty.stanford.edu/~eroberts/jtf/) url=http://www-cs-faculty.stanford.edu/~eroberts/jtf/acm.jar version=2 prettyVersion = 1.99.1 (2008-Sep-20)