To test if it is a problem with the txt replace this line:
with this line:Code:TAG POS={{!VAR1}} TYPE=TEXTAREA ATTR=ID:comment CONTENT={{!COL1}}
Code:TAG POS={{!VAR1}} TYPE=TEXTAREA ATTR=ID:comment CONTENT=Nice!
You will be able to see if that posts after running the script, if it does it is problem with your txt file. What is your browser type and OS? Make sure it is up to date, ect. This should work if all steps are followed as others have confirmed.
SET !TIMEOUT_PAGE 1SET !ERRORIGNORE YES
CMDLINE !DATASOURCE gramcomments.txt
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
SET !VAR1 {{!LOOP}}
TAG POS={{!VAR1}} TYPE=DIV ATTR=TXT:Add<SP>Comment<SP>→
WAIT SECONDS=2
TAG POS={{!VAR1}} TYPE=TEXTAREA ATTR=ID:comment CONTENT={{!COL1}}
TAG POS={{!VAR1}} TYPE=SPAN ATTR=TXT:Add<SP>Comment
WAIT SECONDS=2
SET !TIMEOUT_PAGE 1
SET !ERRORIGNORE YES
CMDLINE !DATASOURCE gramcomments.txt
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
TAG POS={{!LOOP}} TYPE=DIV ATTR=TXT:Add<SP>Comment<SP>→
WAIT SECONDS=2
TAG POS={{!LOOP}} TYPE=TEXTAREA ATTR=ID:comment CONTENT={{!COL1}}
TAG POS={{!LOOP}} TYPE=SPAN ATTR=TXT:Add<SP>Comment
WAIT SECONDS=2
I'm confused for what you mean when you said " Save a txt file with a separate response (example below) for each line in your C:\Users\yourname\Documents\iMacros\Datasources folder" also i copied your code and it wasnt commenting on anything. where it says add comment is that were i put in my comment and what else to i need to actually change on your code please respond soonThis script pulls preloaded comments in descending order from a txt file and posts comments under Gramfeed (google it).
Instructions:
1. Sign in with your gramfeed account
2. Search the hashtag you wish to target
3. On the results page choose the icon at the top right with the bars to list the results as rows
4. Save a txt file with a separate response (example below) for each line in your C:\Users\yourname\Documents\iMacros\Datasources folder
5. Add the macro listed below
6. Set the loop number
7. Press loop play and this script will run forever without error.
8. Enjoy!
IMPORTANT:
Change the WAIT SECONDS to larger amounts of time to avoid being cut off. The script as is will cut you off rather soon. So please don't complain about this.
iMacros Script:
Code:SET !TIMEOUT_PAGE 1 SET !ERRORIGNORE YES CMDLINE !DATASOURCE gramcomments.txt SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE {{!LOOP}} SET !VAR1 {{!LOOP}} TAG POS={{!VAR1}} TYPE=DIV ATTR=TXT:Add<SP>Comment<SP>→ WAIT SECONDS=2 TAG POS={{!VAR1}} TYPE=TEXTAREA ATTR=ID:comment CONTENT={{!COL1}} TAG POS={{!VAR1}} TYPE=SPAN ATTR=TXT:Add<SP>Comment WAIT SECONDS=2
TXT Example:
Code:This is really cool Awesome Tight Sweet This rules Super cool Sick Too good Dope Nice
I am new here and I spent a good amount of time making this. Please rep/thank if you find it useful.![]()
This script pulls preloaded comments in descending order from a txt file and posts comments under Gramfeed (google it).
Instructions:
1. Sign in with your gramfeed account
2. Search the hashtag you wish to target
3. On the results page choose the icon at the top right with the bars to list the results as rows
4. Save a txt file with a separate response (example below) for each line in your C:\Users\yourname\Documents\iMacros\Datasources folder
5. Add the macro listed below
6. Set the loop number
7. Press loop play and this script will run forever without error.
8. Enjoy!
IMPORTANT:
Change the WAIT SECONDS to larger amounts of time to avoid being cut off. The script as is will cut you off rather soon. So please don't complain about this.
iMacros Script:
Code:SET !TIMEOUT_PAGE 1 SET !ERRORIGNORE YES CMDLINE !DATASOURCE gramcomments.txt SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE {{!LOOP}} SET !VAR1 {{!LOOP}} TAG POS={{!VAR1}} TYPE=DIV ATTR=TXT:Add<SP>Comment<SP>→ WAIT SECONDS=2 TAG POS={{!VAR1}} TYPE=TEXTAREA ATTR=ID:comment CONTENT={{!COL1}} TAG POS={{!VAR1}} TYPE=SPAN ATTR=TXT:Add<SP>Comment WAIT SECONDS=2
TXT Example:
Code:This is really cool Awesome Tight Sweet This rules Super cool Sick Too good Dope Nice
I am new here and I spent a good amount of time making this. Please rep/thank if you find it useful.![]()
Nice script! Especially that {{!VAR1}} command genius. I usually write imacro scripts think I should do some for every online instagram viewer like statigram, webstagram etc. I think they connect through different API's so if say gramfeed gets blocked you can probably start commenting through statigram. I may be wrong on this though!
Instead ofCode:SET !TIMEOUT_PAGE 1SET !ERRORIGNORE YES CMDLINE !DATASOURCE gramcomments.txt SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE {{!LOOP}} SET !VAR1 {{!LOOP}} TAG POS={{!VAR1}} TYPE=DIV ATTR=TXT:Add<SP>Comment<SP>→ WAIT SECONDS=2 TAG POS={{!VAR1}} TYPE=TEXTAREA ATTR=ID:comment CONTENT={{!COL1}} TAG POS={{!VAR1}} TYPE=SPAN ATTR=TXT:Add<SP>Comment WAIT SECONDS=2
You can use the {{!LOOP}} variable as its own like this
Code:SET !TIMEOUT_PAGE 1 SET !ERRORIGNORE YES CMDLINE !DATASOURCE gramcomments.txt SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE {{!LOOP}} TAG POS={{!LOOP}} TYPE=DIV ATTR=TXT:Add<SP>Comment<SP>→ WAIT SECONDS=2 TAG POS={{!LOOP}} TYPE=TEXTAREA ATTR=ID:comment CONTENT={{!COL1}} TAG POS={{!LOOP}} TYPE=SPAN ATTR=TXT:Add<SP>Comment WAIT SECONDS=2
I often find that the reduction of variable lines improves the performance![]()