搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Since Firefox version 74.0, the WinWait function from AutoHotKey does not work anymore. There was no problem in Firefox 73.x. Any Idea?

  • 2 个回答
  • 1 人有此问题
  • 39 次查看
  • 最后回复者为 DirkVdm

more options

Hi there... I use a AutHotKey script that opens a Firefox window, then waits for it, maximizes it, and then performs some actions. The WinWait function does not work anymore immediately after the Firefox upgrade from version 73.x to 74.0 AutoHotket script extract:

========================

run, https://en.wikipedia.org/wiki/Special:EditWatchlist/raw, , max Winwait, Edit raw watchlist - Wikipedia - Mozilla Firefox Sleep, 2000 ; WinMaximize, Edit raw watchlist - Wikipedia - Mozilla Firefox MouseClick, left, 765, 676 clipboard = Send ^a ; Send ^c ; ClipWait ;

========================

The current title looks the same, but WinWait function never completes. Anyone any idea? TIA

Hi there... I use a AutHotKey script that opens a Firefox window, then waits for it, maximizes it, and then performs some actions. The WinWait function does not work anymore immediately after the Firefox upgrade from version 73.x to 74.0 AutoHotket script extract: ==================================== run, https://en.wikipedia.org/wiki/Special:EditWatchlist/raw, , max Winwait, Edit raw watchlist - Wikipedia - Mozilla Firefox Sleep, 2000 ; WinMaximize, Edit raw watchlist - Wikipedia - Mozilla Firefox MouseClick, left, 765, 676 clipboard = Send ^a ; Send ^c ; ClipWait ; ==================================== The current title looks the same, but WinWait function never completes. Anyone any idea? TIA

被采纳的解决方案

Problem solved!

In version 73.0.1 and earlier, there are two minus signs in the wintitle:

"Edit raw watchlist - Wikipedia - Mozilla Firefox"

In version 74.0, there is a minus sign (hex 20) and an en-dash (hex 96) in the wintitle:

"Edit raw watchlist - Wikipedia – Mozilla Firefox"

Strings were copied with tasklist /v.

定位到答案原位置 👍 0

所有回复 (2)

more options

选择的解决方案

Problem solved!

In version 73.0.1 and earlier, there are two minus signs in the wintitle:

"Edit raw watchlist - Wikipedia - Mozilla Firefox"

In version 74.0, there is a minus sign (hex 20) and an en-dash (hex 96) in the wintitle:

"Edit raw watchlist - Wikipedia – Mozilla Firefox"

Strings were copied with tasklist /v.

由DirkVdm于修改

more options

As of version 76.0.1 the en-dash was replaced with a minus sign again.

Thank you!

由DirkVdm于修改