The main purpose of this tutorial is to teach you how to easily post your favorite bookmarks on delicious.com. Using this script you can bookmark multiple urls on a single account in a flash. Its so easy to use, plus its Free!.
Copy the code that you will see below in notepad and save it as 'submit-delicious.iim' in the macros folder. This is where you have set your imacros player to get the macros file.
VERSION BUILD=200003
SET !TIMEOUT 180
TAB T=1
TAB CLOSEALLOTHERS
SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
SET !LOOP 1
SET !DATASOURCE url-list.csv
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://delicious.com/
TAG POS=1 TYPE=A ATTR=TXT:Sign
ONSECURITYDIALOG BUTTON=YES CONTINUE=YES
TAG POS=1 TYPE=A ATTR=TXT:Sign
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:login_form ATTR=ID:username CONTENT=youremailORusername
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:login_form ATTR=ID:passwd CONTENT=yourpassword
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:login_form ATTR=ID:.save
TAG POS=1 TYPE=A ATTR=ID:saveBookmark
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/save ATTR=ID:url CONTENT={{!COL2}}
TAG POS=1 TYPE=BUTTON ATTR=TXT:Next
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/save ATTR=ID:title CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/save ATTR=ID:tags CONTENT={{!COL3}}
TAG POS=1 TYPE=BUTTON ATTR=TXT:Save
TAG POS=1 TYPE=A ATTR=TXT:Sign
WAIT SECONDS=4
TAG POS=1 TYPE=A ATTR=TXT:Sign
WAIT SECONDS=5
Now you will need a datasource for it name as 'url-list.csv' and this is the format for setting up your bookmarks that you want to submit. Save it inside the datasource folder.
"Your Title","http://yoururl.com","tags tags2 tags3"
Each line in your datasource (csv file) should be in that format. Or else the imacros script will not work.
Now in using the script, instead of pressing the Play button you will press the Play(Loop) button to loop the whole process until the end. And the maximum loop number you need to put in the imacros player will depend on how many lines of info you have made inside the CSV file.
If you have any question regarding this or any suggestions, please leave a comment below.
You can download the source file here. Link
Auto Post to Delicious.com
Subscribe to:
Post Comments (Atom)
Twitter
Facebook
Flickr
RSS
1 comments: (+add yours?)
running a macro on a loop & when it starts again it always stops.
I need it to run a loop after a 1hr 10 min. approx
So i have it set like this
( end of command )
TAG POS=1 TYPE=SPAN ATTR=TXT:UseAgain
WAIT SECONDS=1
TAG POS=1 TYPE=A ATTR=TXT:Races
WAIT SECONDS=4299
TAG POS=1 TYPE=A ATTR=TXT:Races
After the Wait command it just stops
What is it i'm doing wrong? Thanks
Post a Comment