Answers:
我不知道可以将焦点移回父窗口的快捷方式,但是如果您alt+ tab然后再alt+ tab迅速返回真实窗口,则Flash窗口将失去焦点,之后您可以alt+ d或ctrl+ 关注t您的内心。
当Alt+ Tab方法有效时,我建议为此使用autohotkey(以及几乎所有其他功能)。这样,您可以使所有热键按预期方式工作。
这里以close tab命令为例:
$^w:: ; the $ prevents the hotkey from calling itself in line 4
Send, {Control up}
ControlClick, x1 y1085, ahk_class MozillaWindowClass,,,, Pos ; FF gain focus
send ^w ; send hotkey
return
瞧,轻松顺畅,现在您可以关闭标签页而无需重新获得焦点。这适用于所有插件,而不仅仅是Flash。