Hi,
first of all, I have to say I love this project. It provides a pretty easy way to create applets, much easier than doing it directly in Java (in my opinion).
Now, let's head to the problem: I am developing an application using the MT4j project functionality. It is supposed to have several instances of an application that I had already developed, but working at the same time and running on the same screen. Each instance would have several AWT items, between them JLists, but I've read that AWT stuff may bring problems when working with MT4j so that's why I'm using Processing: I'm converting my AWT application into an applet which will make no usage of AWT. The problem is that I can design things like JButtons, JLabels or non-scrollable lists without AWT just by using the Processing tools BUT scrolls? How could I create an scroll so that a list can be walked through completely, with no dependency on the number of elements?
1