stuarthooper:
How do I get it to only tweet one of the messages each time the button is pressed?
Uh... Don't use a for() loop to send all of them. Only send one message:
twitter.post(buttonPressed[0]);
stuarthooper:
How do I get it to only tweet one of the messages each time the button is pressed?
Uh... Don't use a for() loop to send all of them. Only send one message:
twitter.post(buttonPressed[0]);