Post tweets with imacro script

Iulian

Registered Member
Joined
Jun 11, 2012
Messages
52
Reaction score
4
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

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!
 
Nothing till now.... As, Twitter is updating their system regularly.
But, as we're experienced WEB & SOFTWARE developer so that we can help you in this field.
I'll help you over this @ free of cost.

Thanks...
 
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

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!
not sure how to solve this the way you want, maybe you can find your answer on the iMacros forum or stackoverflow, but i can think of a workaround:
make your individual tweets into a spun comment (if you have totally different tweets) or write a well spun comment (if your tweets are the variation of one tweet) and use a free online spinner to get a random result then extract the result and post it to twitter, this all can be done with iMacros w/ ease
 
Code:
SET rand EVAL("var randomNumber=Math.floor(Math.random()*100 + 1); randomNumber;")
SET !DATASOURCE_LINE {{rand}}
 
Back
Top