Search found 364 matches

by bobis
Sat Aug 31, 2013 10:35 am
Forum: iMacros for Firefox
Topic: QUESTION OF ALL MY LIFE
Replies: 9
Views: 5691

Re: QUESTION OF ALL MY LIFE

you need javascipt or similar to do statements
by bobis
Fri Aug 30, 2013 6:34 am
Forum: iMacros for Firefox
Topic: QUESTION OF ALL MY LIFE
Replies: 9
Views: 5691

Re: QUESTION OF ALL MY LIFE

if you got responce all you need is to scrape the result from the page using EXTRACT
by bobis
Wed Aug 28, 2013 7:25 pm
Forum: iMacros for Firefox
Topic: Why is !VAR1 "Undefined"?
Replies: 14
Views: 8830

Re: Why is !VAR1 "Undefined"?

remove "else" part and try to escape quotes

Code: Select all

SET !VAR1 EVAL("if (\"{{!LOOP}}\"==1) {var y=\"{{!NOW:hh:nn:ss}}\";} y;")
by bobis
Wed Aug 28, 2013 6:36 pm
Forum: iMacros for Firefox
Topic: Js in Macro please help
Replies: 6
Views: 3560

Re: Js in Macro please help

there is no IF statement in imacros, so you'll need to use javascript or similar for this
by bobis
Wed Aug 28, 2013 5:24 pm
Forum: iMacros for Firefox
Topic: [SOLVED] Firefox 23 and above: issue with URL GOTO command
Replies: 16
Views: 11712

Re: upcoming Firefox 23 and URL GOTO command

the issue appear also on Firefox 24 (maybe title of the thread should be changed?)
by bobis
Wed Aug 28, 2013 5:11 pm
Forum: iMacros for Firefox
Topic: QUESTION OF ALL MY LIFE
Replies: 9
Views: 5691

Re: QUESTION OF ALL MY LIFE

as far as I see antigate do not have regular external http page for captcha submission (like deathbycaptcha), so you can only use http post api (which can not be done by imacros for firefox), the only workaround I know is to create local html page with form data and upload your captcha file using it...
by bobis
Wed Aug 28, 2013 5:20 am
Forum: iMacros for Firefox
Topic: EVAL Command not Working? Please Help..
Replies: 5
Views: 3397

Re: EVAL Command not Working? Please Help..

Code: Select all

SET !VAR1 EVAL("var x=\"{{!var}}\"; var y=x.replace(\"#EANF\",\"\"); y;")
by bobis
Mon Aug 26, 2013 4:44 pm
Forum: iMacros for Firefox
Topic: [SOLVED] Firefox 23 and above: issue with URL GOTO command
Replies: 16
Views: 11712

Re: upcoming Firefox 23 and URL GOTO command

any update on this issue?
by bobis
Fri Aug 16, 2013 7:08 am
Forum: iMacros for Firefox
Topic: How to NOT VISIT some links
Replies: 5
Views: 2836

Re: How to NOT VISIT some links

load list of your current contacts to array and each time compare it with your current profile before visiting profile.
can be done with js or similar, but not with regular IIM script
by bobis
Wed Aug 14, 2013 4:35 pm
Forum: iMacros for Firefox
Topic: Need help with !var
Replies: 2
Views: 1584

Re: Need help with !var

here is example:

Code: Select all

SET !VAR1 EVAL("var array = [\"hi\",\"hello\",\"bye\",\"bestmacros\"];array[Math.floor(Math.random() * array.length)];")
by bobis
Fri Aug 09, 2013 7:33 am
Forum: General Support & Discussions
Topic: NEAD HELP
Replies: 6
Views: 4244

Re: NEAD HELP

NEED, not NEAD! :evil: :evil: :evil: :? :? :? :roll:
by bobis
Tue Aug 06, 2013 4:53 am
Forum: iMacros for Firefox
Topic: ONDOWNLOAD file
Replies: 2
Views: 1799

Re: ONDOWNLOAD file

no
by bobis
Tue Aug 06, 2013 4:43 am
Forum: iMacros for Firefox
Topic: Challenge: Filling in form that changes constantly.
Replies: 19
Views: 8181

Re: Challenge: Filling in form that changes constantly.

no, buddy, my code is javascript code not IIM - you need to save it as .js and run in imacros as regular script. if you want to run it as IIM script here is the code that should work: VERSION BUILD=8300326 RECORDER=FX TAB T=1 TAB CLOSEALLOTHERS URL GOTO=website I am using TAG POS=1 TYPE=TD ATTR=TXT:...
by bobis
Sun Aug 04, 2013 6:56 pm
Forum: iMacros for Firefox
Topic: Challenge: Filling in form that changes constantly.
Replies: 19
Views: 8181

Re: Challenge: Filling in form that changes constantly.

try this:

Code: Select all

var index,index2,result;
var ex=iimGetLastExtract(1);
index=ex.indexOf("id=");
index2=ex.indexOf("_itemcomments",index);
result=ex.substring(index+4,index2+1);