imacros正在运行.iim没有停止

时间:2016-02-04 13:12:36

标签: javascript imacros

我的imacros脚本有问题:当我运行AMF-Master.iim脚本时。

VERSION BUILD=8300326 RECORDER=FX
SET !ERRORIGNORE YES
URL GOTO=imacros://run/?m=ADDMEFAST/FB-Followers.js
URL GOTO=imacros://run/?m=ADDMEFAST/FB-Likes.js
URL GOTO=imacros://run/?m=ADDMEFAST/FB-Post-Like.js
URL GOTO=imacros://run/?m=ADDMEFAST/FB-Post-Share.js
URL GOTO=imacros://run/?m=ADDMEFAST/G-Circles.js
URL GOTO=imacros://run/?m=ADDMEFAST/MS-Friends.js
URL GOTO=imacros://run/?m=ADDMEFAST/PT-Followers.js
URL GOTO=imacros://run/?m=ADDMEFAST/PT-Likes.js
URL GOTO=imacros://run/?m=ADDMEFAST/PT-Repins.js
URL GOTO=imacros://run/?m=ADDMEFAST/TW-Favorites.js
URL GOTO=imacros://run/?m=ADDMEFAST/TW-Followers.js
URL GOTO=imacros://run/?m=ADDMEFAST/TW-Retweets.js
URL GOTO=imacros://run/?m=ADDMEFAST/YT-Likes.js
URL GOTO=imacros://run/?m=ADDMEFAST/YT-Subscribe.js
URL GOTO=imacros://run/?m=ADDMEFAST/Daily-Bonus.js

首先它开始运行line3,URL GOTO = imacros:// run /?m = ADDMEFAST / FB-Followers.js。当它完成运行时,它就会停在那里。它不会运行第四行,即URL GOTO = imacros:// run /?m = ADDMEFAST / FB-Likes.js以及其他行。并且我的所有.js文件都位于ADDMEFAST文件的同一文件夹中。那么这里的问题是什么?

1 个答案:

答案 0 :(得分:1)

用于Firefox的“iMacros”只能运行一个命令,如URL GOTO=imacros://run/?m=…,它必须位于宏的末尾。 (原因是此命令最终出现错误。)因此,如果要继续执行以下脚本,可以添加包含下一个要播放脚本的命令的行,即“FB-Followers.js”它将是:

iimPlayCode("URL GOTO=imacros://run/?m=ADDMEFAST/FB-Likes.js");

代表'FB-Likes.js':

iimPlayCode("URL GOTO=imacros://run/?m=ADDMEFAST/FB-Post-Like.js");

此外,您可以尝试编写一个控制脚本(非宏),如下所示:

iimPlayCode("URL GOTO=imacros://run/?m=ADDMEFAST/FB-Followers.js");
// time to finish the script (choose yourselves)
iimPlayCode("WAIT SECONDS=3");
iimPlayCode("URL GOTO=imacros://run/?m=ADDMEFAST/FB-Likes.js");
iimPlayCode("WAIT SECONDS=3");
iimPlayCode("URL GOTO=imacros://run/?m=ADDMEFAST/FB-Post-Like.js");
// ...

然而,我更倾向于推荐第一个建议,因为第二个建议可能会有意想不到的行为。