Invoking iMacros script from another iMacros scrip

2019-07-19 06:24发布

问题:

Suppose I have 2 iMacros scripts script1.iim and script2.iim, is there anyway to invoke script2.iim from within script1.iim?

Thanks.

回答1:

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")


回答2:

a simple option is to combine the two scripts



标签: imacros