Loading...
Logo
Processing Forum
Hi,  I have an application that works in Processing, but not after it's been exported. I'm exporting it as an application, NOT as an applet. Is there a way to launch the app from the console so I can see debug information? I'm on OSX.

Thanks!


Rob

Replies(2)

my tame mac-owning friend who helped me with testing an application once says you can run the application from the command line using:

"application.macosx/NAME.app/Contents/MacOS/JavaApplicationStub"

where application.macosx is the directory that processing creates and NAME is the name of the application. you need to be in the directory where the sources are, under your sketchbook dir.
Thanks! I just added a ./ to the front of that line and it works great.