I have a Java project where I am pulling tweets from twitter using the twitter4j library. A GUI will search by account, pull the tweets, let you remove some, then I want to launch an Applet which will iterate through the list of tweets and display them one at a time as scrolling text.
I want the display to be a separate window, preferably full screen, but I don’t know at all how to go about it, and what I want is specific enough that I couldn’t find any good examples for what I’m trying to do.
Right now, my GUI is running from GUIClass and imports Methods and they are both in the package “Twitterfeed” my displaying applet is in the package TwitterApplet (mostly because I don’t know what i’m doing with netbeans, I much prefer Visual Studio and .net). I can run the Applet by itself by clicking “run file” and it shows up and scrolls the default text. The applet works, how do I start it from the GUIClass?
Never worked with this API, but appletviewer is an executable (jre/bin/appletviewer.exe) and takes a set of options. I assume you can trigger it using
Especially that you don’t care if it runs in a separate window.