Search found 364 matches

by bobis
Sun Aug 04, 2013 6:50 pm
Forum: iMacros for Firefox
Topic: RuntimeError: ONDOWNLOAD
Replies: 2
Views: 1651

Re: RuntimeError: ONDOWNLOAD

it look's like your tag command odes not really starts downloading
by bobis
Thu Aug 01, 2013 6:59 pm
Forum: iMacros for Firefox
Topic: Firefox issues and blank pages
Replies: 10
Views: 9025

Re: Firefox issues and blank pages

open firefox twice
by bobis
Mon Jul 29, 2013 5:30 am
Forum: iMacros for Firefox
Topic: Visit random page from pool of pages
Replies: 11
Views: 6731

Re: Visit random page from pool of pages

this code will randomly pick from first 10 lines in csv - just run it with loop:

Code: Select all

SET !DATASOURCE c:\test\test.csv
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*10 + 1); randomNumber;")
SET !DATASOURCE_LINE {{!VAR1}}
.... other syntax....
URL GOTO={{!COL1}}
by bobis
Thu Jul 25, 2013 8:15 pm
Forum: iMacros for Firefox
Topic: Problems with flash
Replies: 3
Views: 2055

Re: Problems with flash

imacros for firefox does not work with flash
by bobis
Sat Jul 20, 2013 7:19 am
Forum: iMacros for Firefox
Topic: Challenge: Filling in form that changes constantly.
Replies: 19
Views: 8198

Re: Challenge: Filling in form that changes constantly.

possible.

use TAG command on tag you want to scrape with extract=htm parameter - this way you can scrape html content of the tag, after this you can use javascript string commands inside js or EVAL (replace, substring and so on) to parse the data and get ID you need.
by bobis
Wed Jul 17, 2013 5:38 am
Forum: iMacros for Firefox
Topic: Visit random page from pool of pages
Replies: 11
Views: 6731

Re: Visit random page from pool of pages

put websites links in csv and randomly pick row from file.
by bobis
Wed Jul 17, 2013 5:34 am
Forum: iMacros for Firefox
Topic: Conditional Imacro
Replies: 1
Views: 1171

Re: Conditional Imacro

impossible with regular IIM script. use javascript or similar
by bobis
Mon Jul 15, 2013 5:28 pm
Forum: iMacros for Firefox
Topic: Technical assistance
Replies: 1
Views: 1162

Re: Technical assistance

can't be done with simple IIm, as it does not have IF statement.
use javascript or similar
by bobis
Sun Jul 14, 2013 7:43 pm
Forum: iMacros for Firefox
Topic: Tab close nor work in javascript
Replies: 2
Views: 2020

Re: Tab close nor work in javascript

because your format is incorrect.
here is correct one:

Code: Select all

var cerrartab ;
cerrartab =  "CODE:";
cerrartab +=  "TAB T=1" + "\n"; 
cerrartab +=  "TAB CLOSE" + "\n";
iimPlay(cerrartab);
by bobis
Sun Jul 14, 2013 5:33 pm
Forum: iMacros for Firefox
Topic: How to open recently closen TAB in iMacros in Firefox?
Replies: 2
Views: 1857

Re: How to open recently closen TAB in iMacros in Firefox?

save the url before closing the tab and use it to re-open closed tab.
something like this:

Code: Select all

SET !VAR1 {{!URLCURRENT}}
TAB OPEN
TAB T=2
URL GOTO={{!VAR1}}
this is exact example from wiki: http://wiki.imacros.net/!URLCURRENT
by bobis
Sun Jul 14, 2013 5:40 am
Forum: iMacros for Firefox
Topic: deathbycaptcha and imacros
Replies: 3
Views: 11463

Re: deathbycaptcha and imacros

VERSION BUILD=7401004 RECORDER=FX SET !EXTRACT_TEST_POPUP NO SET !ERRORIGNORE YES 'This imacros script created by bestmacros 'Find more here: http://www.bestmacros.com TAB T=1 URL GOTO=http://www.google.com/recaptcha/learnmore filedelete name=c:\bestmacros\image.jpg FRAME F=1 ONDOWNLOAD FOLDER=c:\b...
by bobis
Sun Jul 07, 2013 5:15 pm
Forum: iMacros for Firefox
Topic: How do I play an external javascript?
Replies: 4
Views: 2346

Re: How do I play an external javascript?

you can't do this from IIM file
by bobis
Thu Jun 20, 2013 6:38 pm
Forum: iMacros for Firefox
Topic: iimPlay in EVAL
Replies: 2
Views: 2563

Re: iimPlay in EVAL

you can't use iimplay in eval
by bobis
Thu Jun 20, 2013 5:54 am
Forum: iMacros for Firefox
Topic: using imacros on Frontierville
Replies: 1
Views: 1184

Re: using imacros on Frontierville

yes. it is same as bot
by bobis
Sun Jun 16, 2013 8:54 pm
Forum: iMacros for Firefox
Topic: need help w/ iMacro script code
Replies: 3
Views: 1778

Re: need help w/ iMacro script code

try this:

Code: Select all

TAG POS=1 TYPE=A ATTR=ID:.reactRoot[*]
if this does not work you'll have to find different tag parameter to click