Search found 17 matches

by lumer8
Mon Apr 13, 2015 5:11 am
Forum: iMacros for Firefox
Topic: Max wait seconds time?
Replies: 1
Views: 1773

Max wait seconds time?

What is the max time i can put for seconds can i put 10000
by lumer8
Sun Mar 08, 2015 7:50 am
Forum: iMacros for Firefox
Topic: Macro stalling on opening a new tab
Replies: 6
Views: 42614

Re: Macro stalling on opening a new tab

its not working because of that frame tag, its not playing the code in the correct frame. i would play around with the frame number, try 1-6.
by lumer8
Sun Mar 08, 2015 7:43 am
Forum: iMacros for Firefox
Topic: test internet connection
Replies: 10
Views: 79727

Re: test internet connection

if your not connected to the internet your internet wont work along with imacros, or do you mean verify a certain proxy/ ipaddress connection?
by lumer8
Sun Mar 08, 2015 7:36 am
Forum: Data Extraction and Web Screen Scraping
Topic: Number of concurrent Browsers
Replies: 3
Views: 73266

Re: Number of concurrent Browsers

download firemin, i went from 200-300mb per firefox tab open, now less than 50mb.
by lumer8
Wed Feb 18, 2015 4:27 pm
Forum: iMacros for Firefox
Topic: How to use event in javascript?
Replies: 3
Views: 22694

How to use event in javascript?

Im wondering is it possible to use event mode with javascript, i keep getting an error. var macro; macro = "CODE:"; macro += "SET !ERRORIGNORE YES" + "\n"; macro += "URL GOTO=google.com/" + "\n"; macro += "WAIT SECONDS=2" + "\n"; ...
by lumer8
Sat Nov 15, 2014 11:34 pm
Forum: iMacros for Firefox
Topic: open link in new tab javascript?
Replies: 1
Views: 2680

open link in new tab javascript?

I tried the following code but it clicks on the link before opening a new tab. The code is the same way you would do it in imacros so not sure whats going on? var newTab; newTab = "CODE:"; newTab += "TAG POS={{ITEM}} TYPE=A ATTR=HREF:http://google.com/*" + "\n"; newTab ...
by lumer8
Sat Nov 15, 2014 6:58 pm
Forum: iMacros for Firefox
Topic: Add TrashCan Feature!
Replies: 4
Views: 2575

Re: Add TrashCan Feature!

I would agree and I would add: When clicking on 'Record', keep the previous Version of '#Current.iim' (by sending it automatically to the 'Trash' Folder...).
Yup thats another much needed feature, i have overwritten that #current file many times by accident with important stuff i needed in it.
by lumer8
Fri Nov 14, 2014 1:14 pm
Forum: iMacros for Firefox
Topic: Feature Requests & Bug Fix Requests. ADD YOURS!
Replies: 363
Views: 4583597

Re: Feature Requests & Bug Fix Requests. ADD YOURS!

Trash can for deleted scripts, so if you delete a script by accident its not lost forever!! Please add this feature.
by lumer8
Fri Nov 14, 2014 1:12 pm
Forum: iMacros for Firefox
Topic: Add TrashCan Feature!
Replies: 4
Views: 2575

Add TrashCan Feature!

Add a feature so if you delete an imacros it can be located in the trash can, im sure this has happened to more people other than me and it sucks you lose the macros forever, so annoying.
by lumer8
Thu Nov 13, 2014 5:46 pm
Forum: iMacros for Firefox
Topic: Possible to run script from desktop?
Replies: 1
Views: 1568

Possible to run script from desktop?

I seen the demo that allows you to run a javascript file from the desktop to open an imacros in firefox, but i want to input my javascript/imacros in the javascript desktop file and not have to call upon an imacros script in firefox, is that possible? That way i can turn the js imacros file into an ...
by lumer8
Tue Nov 04, 2014 12:25 am
Forum: iMacros for Firefox
Topic: How big can imacros script be?
Replies: 1
Views: 1807

How big can imacros script be?

Im just wondering how many lines of code can i make an imacros script? Is there a limit?
by lumer8
Wed Oct 29, 2014 12:47 am
Forum: iMacros for Firefox
Topic: How to delete all browser history?
Replies: 1
Views: 4253

How to delete all browser history?

The CLEAR command clears all cookies and cache, how do i delete the browser history. Is it even possible with imacros, i was thinking maybe theres a firefox addon that automatically deletes history when you open a new tab, that would work as well. Any help would be appreciated. BTW im using firefox ...
by lumer8
Mon Oct 06, 2014 2:31 am
Forum: iMacros for Firefox
Topic: Loop imacros and csv with javascript
Replies: 12
Views: 28166

Re: Loop imacros and csv with javascript

Nevermind i just retried Skippyto's method and it works like a charm. Thanks alot! I appreciate it. :D
by lumer8
Mon Oct 06, 2014 1:47 am
Forum: iMacros for Firefox
Topic: Loop imacros and csv with javascript
Replies: 12
Views: 28166

Re: Loop imacros and csv with javascript

I tried both of your suggestions and they didnt work?! Here is my code , it loops each imacros 5 times but the csv file isnt looping inside the imacros and keeps sending out only the first line, hope someone can help me with my problem. for (i=1;i<=5;i++){iimPlay("Dummy1.iim");} for (i=1;i...
by lumer8
Mon Oct 06, 2014 1:46 am
Forum: iMacros for Firefox
Topic: Loop(Play) automated
Replies: 2
Views: 2400

Re: Loop(Play) automated

Here you go, this is the js file that will run the imacros 11 times.

Just make sure you create the js file in the same folder of the script you want to run.

Code: Select all

for (i=1;i<=11;i++){iimPlay("Website1.iim");}