Imacros SHARED code scripts

I have been working on a macro that scrapes content html code and saves it to .txt. The basic format looks like this:

Code:
TAG POS=1 TYPE=P ATTR=TXT:text1 EXTRACT=HTM
TAG POS=1 TYPE=P ATTR=TXT:text2 EXTRACT=HTM
TAG POS=1 TYPE=P ATTR=TXT:text3 EXTRACT=HTM

SAVEAS TYPE=EXTRACT FOLDER=C:\iMacros\scraped\ FILE=Extract_{{test}}.txt


The problem is that the part that I want saved in one txt file consists of several EXTRACT's.
When I saveas, the different parts get separated by "," which ofcourse shows up when I use the txt file later.
Is it possible to save different parts from imacro without a separator, or do I have to use find/replace in each txt file(1000's)?

Does anyone have a quick fix/ work around for this problem?
 
Thanks for sharing this! I'm also an iMacros developer. will share my scripts here soon!
 
Can plz anybody give a imacros for posting website link on Facebook walls or at profile??

I am really really very grateful :)
 
Need facebook comment Post Imacro i tried to record it but the comment doesnt show Please help im stuck!
 
i'm waiting for any response my problem is how to make imacros press "Enter"?‎ thats all tnx for any advice
 
Can plz anybody give a imacros for posting website link on Facebook walls or at profile??

I am really really very grateful :)

Here's a script to post on Facebook Profile or Facebook Pages:

URL GOTO=(url of your facebook profile or page)
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT=(your post here)
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:Post
 
can anyone help me with this , i need my macro to drop cookies after clicking
TAB T=1
URL GOTO=http://awebsite
WAIT SECONDS=1
CLICK X=913 Y=596
WAIT SECONDS=1
CLICK X=383 Y=299
WAIT SECONDS=15
 
Hey!
I'm looking for a script "simulating" SB browser.
I have a CSV ot TXT file with a list of URLs

url1
url2
...
url7524

I need to navigate to Next (or Previous) URL of my listing with my keyboard (ex press right/left arrows or press Num6/Num4 (arrows))

I need to delete the url[x] from the listing I dont want to keep it in my list. (press DEL)

I need to add a site (after clicking on a link in a site of my list (press INSERT)

At the end of my list (url7524) - script wont loop but my file will be updated only with site of interest

url1
url3
...
url7523
url7525

I have deleted url2 and I have added url7525

What do you think? Is it possible with iMacros ?

Thanks
 
HI all.
I'm new on this forum and first of all want to thank you all for sharing all these precious informations.
Now, I'm working on my Imacros script to post scheduled messages on my tumblr blog.
Searching around in this forum I found out how to insert tags but still few things can't be done.
First of all I'd like to know how to insert the text in "CAPTION" (optionale description under the photo), when I rec the macro and write in the caption it just doesn't rec it.
Here it is my code:

VERSION BUILD=7601105 RECORDER=FX
TAB T=1
TAG POS=2 TYPE=SPAN ATTR=CLASS:new_post_label_icon
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:/new/photo ATTR=NAME:images[o1] CONTENT=C:\................\image.png
TAG POS=1 TYPE=A ATTR=TXT:Set<SP>a<SP>click-through<SP>link
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/new/photo ATTR=ID:post_three CONTENT=mysite
TAG POS=1 TYPE=DIV ATTR=ID:tag_editor
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/new/photo ATTR=ID:tag_editor_input CONTENT=me
FRAME F=2
FRAME F=0
TAG POS=1 TYPE=SELECT FORM=ACTION:/new/photo ATTR=ID:post_state CONTENT=%2
TAG POS=1 TYPE=BUTTON ATTR=ID:save_button
REFRESH

I would be very grateful for any advise.
Thank you.
 
Last edited:
That will be difficult to implement in iMacros.

Best is to hire a coder and get it coded in C or .net...etc..


hello wait'ers - it is good idea to wait some random seconds:


SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*50 ); randomNumber;")
*50 or any other 500,1,400 :)
 
can anyone help me with this , i need my macro to drop cookies after clicking
TAB T=1
URL GOTO=
WAIT SECONDS=1
CLICK X=913 Y=596
WAIT SECONDS=1
CLICK X=383 Y=299
WAIT SECONDS=15

what about CLEAR ?

see:
wiki on imacros website
 
Can somebody here help me finish this script so it can get around the captcha that's on this page? I have no idea what I'm doing I'll have no chance of figuring this out if I don't get some help.

SET !ERRORIGNORE YES
TAB T=1
URL GOTO=
TAG POS=1 TYPE=INPUT:RADIO ATTR=ID:PDI_answer32080216
TAG POS=2 TYPE=SPAN ATTR=TXT:Vote
FILEDELETE NAME=C:/pic.jpg
ONDOWNLOAD FOLDER=C:\FILE=pic.jpg
TAG POS=1 TYPE=IMG ATTR=HREF:<><I'm probably not inserting the captcha right here>CONTENT=EVENT:SAVEITEM
TAB OPEN
TAB T=2
URL GOTO=beatcaptchas
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:upload.php ATTR=ID:key CONTENT=<pt8hca83ddhacyb7g4x0unqwn3azv2abk6gn6ge7>
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:upload.php ATTR=NAME:file CONTENT=C:\pic.jpg
WAIT SECONDS=3
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:upload.php ATTR=NAME:submit
TAG POS=1 TYPE=BODY ATTR=TXT:* EXTRACT=TXT
SET !VAR1 {{!EXTRACT}}
TAB T=1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:captcha CONTENT={{!var1}}
 
Last edited:
hi i need a help from you


I have link in which i want to vote one photo which includes name ,surname,emailid


i want imacro script so that the script should generate name ,surname,emailid,for that particular link







i need to increase the votes
 
I just want to know how to install proxies into iMacros. How would I do that?
 
hi i have a script where it goes to a page but sometimes the page dosent load and error comes this happens with the website alot of time and my imacros script stops how do i get it continuing without stopping so for example it goes to one page and type a and then another page types b and then again goes to one page and types a but if the page dosent load the script should continue to another page to type b

also is there a script to make google accounts

i m using free imacros version.
 
Back
Top