some one should please make my day by editing this simple imacros script.

safeenaat1

Regular Member
Joined
Aug 20, 2013
Messages
246
Reaction score
21
good day to everyone in here. please i am having a small issue with imacros. i have a series of emails i have been sending out and i lost the database of the emails. the emails are about 400 or their about. i can scrape them from my gmail inbox but it is not going to be easy doing so one by one. i have a simple imacros script that i want some one to edit so that it can scrape all emails from my account that have that search term. also i sent out some emails 3 or so at a time using the bcc option so please put it into consideration. below is the script and thanks in advance

the search term is: 1st emal: a message from importng.info


Code:
VERSION BUILD=8961227 RECORDER=FX
TAB T=1
URL GOTO=https://mail.google.com/mail/u/0/#inbox
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:gbqf ATTR=ID:gbqfq CONTENT=1st<SP>emal:<SP>a<SP>message<SP>from<SP>importng.info<SP>
TAG POS=1 TYPE=BUTTON FORM=ID:gbqf ATTR=ID:gbqfb
TAG POS=3 TYPE=SPAN ATTR=TXT:1?50<SP>of<SP>about<SP>93
TAG POS=3 TYPE=TD ATTR=TXT:me,<SP>Barnabas<SP>(5),<SP>1st<SP>email:<SP>A<SP>message*
TAG POS=1 TYPE=IMG ATTR=ID::1k3
BACK

thanks in advance.
 
If configured to do so, Gmail should memorize all the addresses you ever sent an email to (Settings → Create contacts for auto-complete), so you should find all these addresses under Other Contacts, in Contacts. From there, you can just export them or do whatever you want to do with them.

I think by default gmail does remember and store your contact details. So you might not need to mess with the macro script.
 
If configured to do so, Gmail should memorize all the addresses you ever sent an email to (Settings → Create contacts for auto-complete), so you should find all these addresses under Other Contacts, in Contacts. From there, you can just export them or do whatever you want to do with them.

I think by default gmail does remember and store your contact details. So you might not need to mess with the macro script.

i have tried but cant figure out how to do so. please can you be a bit more detailed? i have tried and cant figure it out. if for example my search term is "first email: a message form me". please how do i export all emails under the search term? thanks in advance
 
Are you talking about this http://www.blackhatworld.com/blackh...-new-improved-instagram-follower-script.html? they are pretty basic and just repeat themselves after every individual follow/like


The only thing that comes to mind is instead of setting up different tabs is to set up different windows. Then make a few duplicates of the script, but change the wait times of the ones you want to start later on to be extracted from a text file so you can make the first delay be the longest


Code:
SET !ERRORIGNORE YES
[COLOR=#00ff00]SET !DATASOURCE C:\Users\Plus44\Documents\iMacros\Datasources\waittimes.txt[/COLOR]
SET !TIMEOUT_STEP 2
FILTER TYPE=IMAGES STATUS=ON
SET !LOOP 1
TAB T=1
URL GOTO=http://statigr.am/viewer.php#/user/{{!LOOP}}/
WAIT SECONDS=[COLOR=#00ff00]{{!COL1}}[/COLOR]
TAG POS=1 TYPE=A ATTR=TXT:Follow
WAIT SECONDS=18


so say you want the script to start in an hour make your text file have an hour delay for only the first line, so the rest of the script can just continue like normal

Text file would be like this

3600
5
5
5
5
5
5
5
5

i have read through your profile. please help solve this
 
it can be, that it's a bit too difficult for imacros, but maybe with the if else statement

check out this, it's not exactly what you're trying to do, but it may give you an idea:
Code:
http://stackoverflow.com/questions/10525640/click-a-button-if-text-exist-in-page-with-imacros


i have seen your contributions to thread on imacros. please also contribute on mine
 
quote_icon.png
Originally Posted by uncutu
Can't help you out with the spintax but somethings better than nothing.

Your imacro file:

Code:
     SET !REPLAYSPEED FAST
SET !ERRORIGNORE YES
SET !DATASOURCE datasource.csv
SET !DATASOURCE_COLUMNS 5
SET !TIMEOUT 45
TAB T=1
URL GOTO={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-name CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-email CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-comment CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-url CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=ID:submit-button 
Your datasource.csv file:
     Code:
     [URL]http://link.com/1,name1,email1,comment1,url1[/URL]
[URL]http://link.com/2,name2,email2,comment2,url2[/URL]
[URL]http://link.com/3,name3,email3,comment3,url3[/URL]
....

can you please help with my above problem? thanks in advance
 
Back
Top