Search found 364 matches

by bobis
Fri Dec 27, 2013 7:02 am
Forum: iMacros for Firefox
Topic: Random nicknames with imacros
Replies: 5
Views: 5246

Re: Random nicknames with imacros

no there is no such thing in imacros
by bobis
Fri Dec 27, 2013 7:00 am
Forum: iMacros for Firefox
Topic: Download built-in videos w/ ONDOWNLOAD + Flashgot, error804
Replies: 1
Views: 2418

Re: Download built-in videos w/ ONDOWNLOAD + Flashgot, error

ignore errors with:

Code: Select all

SET !ERRORIGNORE YES
you do not need to use ondownload as it waits for browser download and fail in your case, because you use external plugin/software for download, remember that imacros can not interact with other plugins in your browser.
by bobis
Mon Dec 16, 2013 9:17 pm
Forum: iMacros for Firefox
Topic: Random nicknames with imacros
Replies: 5
Views: 5246

Re: Random nicknames with imacros

here is example which will take random data from first 10 lines from file (1st column)

Code: Select all

SET !DATASOURCE C:\mysource.txt 
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*10 + 1); randomNumber;")
SET !DATASOURCE_LINE {{!VAR1}} 
SET !var2 {{!col1}}
by bobis
Mon Dec 16, 2013 9:13 pm
Forum: iMacros for Firefox
Topic: Problems wuth imacros
Replies: 1
Views: 1638

Re: Problems wuth imacros

try this

Code: Select all

TAB T=1
URL GOTO=http://www.fakemailgenerator.com/

TAG POS=1 TYPE=SPAN ATTR=ID:cxtEmail EXTRACT=TXT

set !var1 EVAL("var s=\"{{!EXTRACT}}\"; s.replace(\"@gmail.com\",\"\");s;")
by bobis
Sun Dec 15, 2013 6:21 pm
Forum: iMacros for Firefox
Topic: Help needed - URL parsing in the address bar of Firefox
Replies: 6
Views: 7320

Re: Help needed - URL parsing in the address bar of Firefox

try this:

Code: Select all

var oldurl="http://www.PROXYSITE.com/GO/ABC123/www.example.com/thePage.html";
var newurl2 = oldurl.replace("http://www.PROXYSITE.com/GO/","");
var index=newurl2.indexOf("/"); 
newurl2 = newurl2.substring(index+1);
by bobis
Sun Dec 15, 2013 6:09 pm
Forum: iMacros for Firefox
Topic: If/Else conditional statement help!
Replies: 1
Views: 1777

Re: If/Else conditional statement help!

your IF statement comparison is incorrect (in JavaScript no need to set <sp> and wildcard * won't work) try this:

Code: Select all

if (trim(G_Extract)=="In Battle!")
by bobis
Sat Nov 23, 2013 8:22 am
Forum: iMacros for Firefox
Topic: need a little help PLZ URGENT
Replies: 6
Views: 3822

Re: need a little help PLZ URGENT

there is no If statement in imacros
by bobis
Mon Nov 18, 2013 10:01 pm
Forum: iMacros for Firefox
Topic: Need help in extracting
Replies: 3
Views: 2084

Re: Need help in extracting

replace "@sudeep" with nothing, like this

Code: Select all

set !extract @sudeep1212
SET !VAR1 EVAL("var s=\"{{!EXTRACT}}\"; s.replace(\"@sudeep\",\"\");s;")
by bobis
Mon Nov 18, 2013 9:58 pm
Forum: iMacros for Firefox
Topic: How can i crack fiverr signup captcha?
Replies: 5
Views: 5707

Re: How can i crack fiverr signup captcha?

1. scrape the text
2. split by space
3. substring first value and third value
4. convert both from string to number
5. add 1st to 2nd
6. post your answer
by bobis
Sun Nov 10, 2013 6:14 pm
Forum: iMacros for Firefox
Topic: Need your help in imacros,its easy but i dont know
Replies: 2
Views: 1764

Re: Need your help in imacros,its easy but i dont know

run with play(loop) button

Code: Select all

URL GOTO=http://demo.imacros.net/Automate/TestForm1
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:demo ATTR=TYPE:text&&NAME:name&&ID:name CONTENT=sudeep{{!loop}}@gmail.com
by bobis
Sun Nov 10, 2013 6:12 pm
Forum: iMacros for Firefox
Topic: simple js loop not working
Replies: 3
Views: 3174

Re: simple js loop not working

Code: Select all

for (var i=1;i<=40;i++)
{
iimSet("i",i);
iimPlayCode("TAG POS={{i}} TYPE=IMG ATTR=SRC:http://*.jpg")
}
by bobis
Thu Oct 31, 2013 7:02 am
Forum: iMacros for Firefox
Topic: Newbie seeking love... or failing that an iMacro Guru
Replies: 4
Views: 2687

Re: Newbie seeking love... or failing that an iMacro Guru

there is no such thing in imacros
by bobis
Tue Oct 29, 2013 6:19 pm
Forum: iMacros for Firefox
Topic: Reading from text file __undefined__
Replies: 6
Views: 14080

Re: Reading from text file __undefined__

Hallo how must I write SET !DATASOURCE c:\das ist ein Testverzeichnis\hier liegt die Datei.csv no solution SET !DATASOURCE "c:\das ist ein Testverzeichnis\hier liegt die Datei.csv" SET !DATASOURCE 'c:\das ist ein Testverzeichnis\hier liegt die Datei.csv' Best regards SET !DATASOURCE c:\da...
by bobis
Mon Oct 28, 2013 6:33 am
Forum: iMacros for Firefox
Topic: If Then problem......again
Replies: 4
Views: 2911

Re: If Then problem......again

here is fixed code

Code: Select all

SET !VAR1 EVAL("var s=\"{{!EXTRACT}}\"; if(s == \"to your favourites\"){text = \"blablabla\";}else {text = \"to your favourites\";}text;")