Invoking iMacros script from another iMacros scrip

2019-07-19 06:39发布

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

Thanks.

标签: imacros
2条回答
小情绪 Triste *
2楼-- · 2019-07-19 07:10

a simple option is to combine the two scripts

查看更多
甜甜的少女心
3楼-- · 2019-07-19 07:11

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")
查看更多
登录 后发表回答