Hi guys and gals, fairly new to processing here with a question for ya'll
let's say I have a set of code exported as an app, we'll call it app1.jar
is there a way to load this process INSIDE the frame of a new processing app?
Currently I can open it using the open() command but this loads the app as well as creating the normal blank window
so the code so far is
open("app1.jar");
my aim at the end of this is to have 5 buttons at the bottom of the screen and each time you press a button it loads a new process, which is why I need it to load inside the frame rather than bring up an entirely new process window.
Hopefully I haven't worded this too terribly, any help would be wonderful!
1