Suppose I have 2 iMacros scripts script1.iim and script2.iim, is there anyway to invoke script2.iim from within script1.iim?
Thanks.
Suppose I have 2 iMacros scripts script1.iim and script2.iim, is there anyway to invoke script2.iim from within script1.iim?
Thanks.
Yes.
You can use JavaScript scripting for that purpose. Place script1.iim
and script2.iim
in the same folder as #Current.iim
Then you can make a JavaScript and name it test.js
. In it place these codes.
iimPlay("script1.iim")
iimPlay("script2.iim")
a simple option is to combine the two scripts