Select ALL accounts in Tweetdeck to Retweet.

Mr Spectre

Regular Member
Joined
Jul 27, 2015
Messages
418
Reaction score
229
I have upto 50 accounts in my tweetdeck and sometimes it becomes very annoying to select all of them to retweet. is there any way where we can automate this process, for example select them all of them together at once with a java script or Imacros? If someone can make an Imacro or JavaScript for this, please do that because i am not able to do such a thing as i am not very good at those things. I will be very thankful .. or if there's some other way please let me know. Thanks :) .

As a reward i will be giving them shoutouts from my two 100k+ accounts. (rewards is just for motivation, i know it means nothing but still:)
 
Maybe look into a better solution for mass managing accounts? Bulk selecting and creating actions should be a straight forward often repeated action. If the program cannot do that probably lots of other time savers you are missing out on
 
You can take a look at this one if you want,

Code:
VERSION BUILD=8850919 RECORDER=FX
SET !ERRORIGNORE YES
SET !LOOP 1
TAB T=1
SET !DATASOURCE numbers.txt
SET !DATASOURCE_LINE {{!LOOP}}
TAG POS={{!LOOP}} TYPE=I ATTR=CLASS:icon<SP>icon-retweet<SP>icon-retweet-toggle<SP>txt-right&&TXT:
WAIT SECONDS=0.5
TAG POS={{!COL1}} TYPE=I ATTR=CLASS:icon<SP>icon-twitter-bird&&TXT:
WAIT SECONDS=0.5
TAG POS=1 TYPE=BUTTON ATTR=TXT:Retweet
WAIT SECONDS=1
 
Any "mass actions" done in tweetdeck will get your accounts locked.
 
Thanks for the reply FREDFRED547, i have installed that extension before too but i didn't know to use it, now i have added it again to my chrome but i am unable to see that 'select all' here. i have refreshed the page and also closed and opened the browsers again too. What to do now? :(
 
Maybe look into a better solution for mass managing accounts? Bulk selecting and creating actions should be a straight forward often repeated action. If the program cannot do that probably lots of other time savers you are missing out on

What do u propose? what would be the best option for retweeting something from even 500 accounts?
 
You can take a look at this one if you want,

Code:
VERSION BUILD=8850919 RECORDER=FX
SET !ERRORIGNORE YES
SET !LOOP 1
TAB T=1
SET !DATASOURCE numbers.txt
SET !DATASOURCE_LINE {{!LOOP}}
TAG POS={{!LOOP}} TYPE=I ATTR=CLASS:icon<SP>icon-retweet<SP>icon-retweet-toggle<SP>txt-right&&TXT:
WAIT SECONDS=0.5
TAG POS={{!COL1}} TYPE=I ATTR=CLASS:icon<SP>icon-twitter-bird&&TXT:
WAIT SECONDS=0.5
TAG POS=1 TYPE=BUTTON ATTR=TXT:Retweet
WAIT SECONDS=1


can you guide me as to how i can use this? I clicked on retweet and when all those accounts appeared waiting to be selected, i put this in iMacros and ran it. it retweeted the tweet but only from those accounts which were already selected (meaning one account, the default one which was already selected)
 
Thanks for the reply FREDFRED547, i have installed that extension before too but i didn't know to use it, now i have added it again to my chrome but i am unable to see that 'select all' here. i have refreshed the page and also closed and opened the browsers again too. What to do now? :(
Ok, do this. Click "Profile" of whatever account you want to retweet off of. Find the tweet but don't click the tweet. Only click the small retweet button. The "Select All" button should appear when you do that.
 
Sorry i should have tell before...

Because it use
SET !DATASOURCE numbers.txt

So you need a list of number as source in your datasource folder: Imacros>>Datasource
you can copy this http://pastebin.com/zTGtFkaj and save it in Notepad then move it to Imacros>>Datasource

Or
Register a macro and click on all your profiles images and copy past it between
WAIT SECONDS=0.5 and WAIT SECONDS=0.5
 
Ok, do this. Click "Profile" of whatever account you want to retweet off of. Find the tweet but don't click the tweet. Only click the small retweet button. The "Select All" button should appear when you do that.

Great buddy.. followed your steps and i was able to find it. Thanks :)
 
Not a Big deal .. Click on Retweet and press f12 in Chrome click on console and paste this Javascript

javascript:var inputs= document.getElementsByClassName('acc-twitter js-account-item js-show-tip'); for(var i=0;i<inputs.length;i++){inputs.click();} 0

press enter and all your accounts will be Selected in one click :)
kindly give me Shoutout :p My twitter Handle = @Ahni_cious
 
Back
Top