gpt4 book ai didi

javascript - imacros 不停地运行 .iim

转载 作者:行者123 更新时间:2023-12-03 07:46:03 27 4
gpt4 key购买 nike

我的 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

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

最佳答案

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");
// ...

但是,我更有可能推荐第一个建议,因为第二个建议可能会出现意外的行为。

关于javascript - imacros 不停地运行 .iim,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35201935/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com