0

I'm looking for methods to interact with multiple pages simultaneously. In my case I have several pages that accept user input as keystrokes, and I would like to be able to trigger all of them.

Any ideas?

Automater? putting multiple tabs in focus simultaneously?

4

2 回答 2

0

You can't do it "simultaneously". Only one thing can have focus at a time. Your options are: to interact with them sequentially (fast enough that it seems simultaneous.) Or, you could write an application that gets all of the window handles, and sends them the keypress messages.

于 2012-10-08T04:27:49.627 回答
0

如果您尝试通过打开多个页面来进行某种数据输入并加快处理速度,您可以尝试以下方法之一

  • 带有自定义脚本的 Firefox Greasemonkey 插件。

还有其他方法可以做这件事。

如果您是程序员,您可以编写一个简单的应用程序将数据发布到页面。这样,您甚至不必打开页面。

于 2012-10-08T04:35:56.513 回答