I created an array of unwanted words and want to use match to iterate through and see if the string contains any of those keywords. Problem is, I keep getting some of the unwanted words show up. Please help.
I have been struggling with this code for weeks now. Please take the time to go through my code and tell me how I can make the function display the tweet when the mouse hovers over it. So far, I have only gotten it to display only the last tweet. I think this is because the x and y values a plotted randomly and keep changing with each pass. I will want to be able to hover over all the plotted shapes and display their respective tweets. I have received help from some people in this forum, about cleaning up the code and making it better, but the fundamental issue remains unresolved. I'm running out of time! Thanks in advance.
Hello guys, total newbie here. I am creating an application that mines data from twitter and represents each of them as an ellipse. I want the actual tweet to show up on mouseover, but since I have the ellipses randomly positioned as x and y, their values keep changing with each loop, making it impossible for me to get the actual coordinates. I figured I will create a class that draws each tweet as an ellipse, so I can call the class and add behavior to it. I am having so much trouble making the class work. I keep getting errors. Please help!
Hey guys, I've been trying to initialize the code below in processing 2, but I keep getting error, "can't find class or type named "Date". I noticed it works in processing 1, but not in 2. Any ideas?
Tweet t = (Tweet) tweets.get(i);
Date d = t.getCreatedAt(); // error: can't find class or type named "Date"
Hello. I'm working on a simple rollover in processing. Currently, the rollover works when I mouse over the ellipse, but it doesn't go away when I move my mouse to another location. Please help if you can.
Hello. I'm new to processing and working on a program that will display the tweets parsed by certain keywords as an ellipse using the streaming API from twitter. I currently have 2 keywords, and each displays as a different colored ellipse. My problem is, I will like to rollover each ellipse to reveal the tweet and the location. Please help!