We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi there - beginner here
I am working on a project where I aim to visualise tweets of a certain hashtag. I am using Processing 3 with Twitter4j. I am able to get the tweets to show up in the console but not in a sketch. I understand I need to use text() as well as setting a font before this but I am confused as to what the data or string data is supposed to be in text() in this particular case
Examples of text() being used I usually see a word or a sentence, but in this case I need it to be the tweets that use this particular hashtag that I have set in the string keywords.
Ultimately I don't want to just display text in the sketch but also some lines and colour and pretty visuals etc. but right now I am stuck on this!
Any help would be really very much appreciated!
Answers
fill(255);
text( tweet, 111,111);
Does that work?
Not sure what’s the problem...
Can you show your code?
Hey thanks for your response - when I put that in it gives the message "tweet cannot be resolved to a variable" - will show the code
tweet was just an example of course
this seems to be the great line:
so you want something like:
after line 55
Write line and line after each other
to write line and line after each other, place
String tweet="";
beforesetup()
and then say :not tested