Search found 46 matches

by groundfalling
Tue Nov 27, 2018 6:38 pm
Forum: iMacros for Chrome
Topic: Macro freezes if URL fails to load
Replies: 17
Views: 20736

Re: Macro freezes if URL fails to load

I had started to "think" about some "Workaround", by first extracting "stg" at the 'TYPE=BODY' or 'TYPE=HTML' Level, where you can extract stg about that 'Page not found' Text, at least on FF, switch anyway to some 2nd Tab (already and always open on some existing Page...
by groundfalling
Tue Nov 27, 2018 4:21 pm
Forum: iMacros for Chrome
Topic: Macro freezes if URL fails to load
Replies: 17
Views: 20736

Re: Macro freezes if URL fails to load

since im running a loop, with the use of "!errorignore yes" if the page fails to load it should simply skip to the next loop but instead it stays stuck. is there any work around this problem?
by groundfalling
Tue Nov 27, 2018 4:05 pm
Forum: iMacros for Chrome
Topic: Macro freezes if URL fails to load
Replies: 17
Views: 20736

Macro freezes if URL fails to load

Imacros for chrome version 10.0.5 Windows 2012 Chrome Version 70.0 ----------------------------------- Hi, im using "!errorignore yes" in my macro but still every time "URL GOTO" fails to open a link. in my case when the browser shows the error "This page isn’t working"...
by groundfalling
Thu Sep 27, 2018 9:55 am
Forum: iMacros for Firefox
Topic: Firefox about pages do not work with iMacros10
Replies: 2
Views: 2278

Re: Firefox about pages do not work with iMacros10

iMacros 10 does not work for any of these "about" protocols: about:about about:accounts about:addons about:app-manager about:buildconfig about:cache about:checkerboard about:compartments about:config about:crashes about:credits about:customizing about:debugging about:downloads about:health...
by groundfalling
Wed Sep 26, 2018 7:58 am
Forum: iMacros for Firefox
Topic: How to press keys in iMacros 10?
Replies: 5
Views: 4517

Re: How to press keys in iMacros 10?

tried this:

Code: Select all

macroCode += 'URL GOTO=javascript:document.dispatchEvent(new<SP>KeyboardEvent("keydown",{"key":36,altKey:true}));\n';
doesn't work.
by groundfalling
Sat Sep 22, 2018 9:24 am
Forum: iMacros for Firefox
Topic: How to press keys in iMacros 10?
Replies: 5
Views: 4517

Re: How to press keys in iMacros 10?

@chivracq Could you please kindly suggest how can i press "Alt" plus Key'36' in imacros 10 EVENT TYPE=KEYPRESS KEY=36 MODIFIERS=alt using this: URL GOTO=javascript:=var<SP>evt=document.createEvent("KeyboardEvent");evt.initKeyEvent("keypress",true,true,window,0,0,0,0,13,...
by groundfalling
Mon Sep 17, 2018 11:05 am
Forum: iMacros for Firefox
Topic: Launch imacros from terminal using imacros://run/?m=
Replies: 31
Views: 26156

Re: Launch imacros from terminal using imacros://run/?m=

Could you please confirm if only this part needs to be changed and nothing else? Thank you

Code: Select all

function getLimits() {
    let defaultLimits = {
        maxVariables: 3,
        maxCSVRows: 100,
        maxCSVCols: 3,
        maxMacroLen: 50,
        maxIterations: 100
    }
by groundfalling
Mon Sep 17, 2018 10:27 am
Forum: iMacros for Firefox
Topic: Launch imacros from terminal using imacros://run/?m=
Replies: 31
Views: 26156

Re: Launch imacros from terminal using imacros://run/?m=

how does the '!errorignore NO' work on your modified xpi? does it skip the macros if some condition is not met like in 8.9.7? I'm assuming in the absence of 50 line limit it will also allow to call more than one macro and skip any of the macro if a condition is not met with the use of '!errorignore ...
by groundfalling
Mon Sep 17, 2018 10:18 am
Forum: iMacros for Firefox
Topic: Launch imacros from terminal using imacros://run/?m=
Replies: 31
Views: 26156

Re: Launch imacros from terminal using imacros://run/?m=

Kindly share the XPI here and would it install and work by simply replacing it with the original iMacros 10?
by groundfalling
Sun Sep 16, 2018 5:28 pm
Forum: iMacros for Firefox
Topic: Firefox about pages do not work with iMacros10
Replies: 2
Views: 2278

Firefox about pages do not work with iMacros10

iMacros 10.0.2.1450 Free Firefox 61.0.1 Ubuntu 16.0.4 I was going through iMacros 10 Beta Feedback thread and saw this by Tom from Tech support: For security reasons in Firefox, you cannot navigate using URL GOTO to a privileged URL such as javascript:, file:, data:, and about: (although about:home ...
by groundfalling
Sat Sep 15, 2018 6:01 am
Forum: iMacros for Firefox
Topic: How to use Eval JS in imacros 10?
Replies: 11
Views: 7601

Re: How to use Eval JS in imacros 10?

so imacros 10 free for FF does not load any about page url goto=about:home url goto=about:blank url goto=about:preferences it does not load any javascript URL GOTO=javascript:this.focus();self.opener=this;self.close() doesn't give any error just doesn't do anything and it also does not allow to save...
by groundfalling
Sat Sep 15, 2018 4:20 am
Forum: iMacros for Firefox
Topic: How to use Eval JS in imacros 10?
Replies: 11
Views: 7601

Re: How to use Eval JS in imacros 10?

and to pass a string this syntax worked:

Code: Select all

macroCode += 'SET !VAR1 EVAL(\"var s=\\"{{!EXTRACT}}\\"; var z; if(s==\\"#EANF#\\"){z=\\"FOUND\\";} else{z=\\"NOTFOUND\\";}; z;\")\n';
macroCode += 'PROMPT {{!VAR1}}\n';
by groundfalling
Sat Sep 15, 2018 4:10 am
Forum: iMacros for Firefox
Topic: How to use Eval JS in imacros 10?
Replies: 11
Views: 7601

Re: How to use Eval JS in imacros 10?

yes in iMacros 10, this has worked for me

Code: Select all

macroCode += 'SET !VAR1 EVAL(\"var s=\\"{{!EXTRACT}}\\"; var z; if(s==\\"#EANF#\\"){z=1;} else{z=0;}; z;\")\n';
by groundfalling
Sat Sep 15, 2018 3:26 am
Forum: iMacros for Firefox
Topic: How to use Eval JS in imacros 10?
Replies: 11
Views: 7601

Re: How to use Eval JS in imacros 10?

sorry this is not working

Code: Select all

macroCode += 'SET !VAR1 EVAL("var s='{{!EXTRACT}}'; var z; if(s!='#EANF'){z=1;} else{z=0;}; z;")\n';
when i use this the macro does not even start, so there is something wrong with this.
by groundfalling
Fri Sep 14, 2018 9:26 am
Forum: iMacros for Firefox
Topic: How to press keys in iMacros 10?
Replies: 5
Views: 4517

How to press keys in iMacros 10?

iMacros 10.0.2.1450 Free Firefox 61.0.1 Ubuntu 16.0.4 Hi, I used to use 'EVENT' to load the homepage EVENT TYPE=KEYPRESS KEY=36 MODIFIERS=alt but EVENT is no longer supported in iMacros 10 and neither is URL GOTO=about:home working. Does anyone know any other way to load the homepage through iMacros...