I'm trying to post tweets using imacro script. The text (tweet) will be imported from a csv file. The csv file has 100 lines (each line has a message with a link).
Now i want that imacro to choose the lines randomly for posting!
this is what i've done but is not good because here SET !DATASOURCE_LINE 1 means that he will extract from my file the text from line 1 and i need to extract randomly
Can someone tell me which is the best bot to post tweets on twitter?
Thanks!
Now i want that imacro to choose the lines randomly for posting!
this is what i've done but is not good because here SET !DATASOURCE_LINE 1 means that he will extract from my file the text from line 1 and i need to extract randomly
Code:
URL GOTO=https://twitter.com/
SET !DATASOURCE C:\Users\User\Desktop\twitterpost.csv
SET !DATASOURCE_LINE 1
EVENTS TYPE=KEYPRESS SELECTOR="#tweet-box-mini-home-profile" CHARS={{!COL1}}
TAG POS=1 TYPE=BUTTON FORM=ID:swift_tweetbox_1416841941371 ATTR=TXT:Tweet<SP>Send<SP>message
Can someone tell me which is the best bot to post tweets on twitter?
Thanks!