Skype 是否有用于在对话之间切换的键盘快捷键?

Skype 是否有用于在对话之间切换的键盘快捷键?

Skype 是否有用于在对话之间切换的键盘快捷键?

我搜索了网络和 Skype 论坛,但什么也没找到。在“工具”→“辅助功能”菜单下有一个叫做“扩展键盘导航”的选项,但它的作用似乎也是一个谜。

答案1

对于 Mac OS X 用户:

Command+ Alt+在主窗口中的选项卡之间切换。

答案2

我只想补充一点。

使用 ALT+1 和 ALT+2 您可以选择联系人/对话列表,然后使用向上/向下选择联系人,并使用空格键查看对话,或按 Enter 键进入对话(意味着焦点将进入编辑框)。

但是,这仍然不像使用 Ctrl+TAB 那么简单……:(

答案3

使用技巧托特斯我编写了一个脚本自动热键

如果你使用的是 Windows,我建议你安装 Autohotkey。然后你可以使用这个简单的脚本:

#SingleInstance force
#IfWinActive ahk_class tSkMainForm
;
;   This Skype shortcuts will make pressing Ctrl+Up and Ctrl+Down work
;   to switch between conversation windows.
;   
;   To do that normally we need to focus the Recent panel with Alt+2
;   (Alt+1 will focus the contacts panel)
;   Next we press up or down to switch between conversations
;   Then press enter to move the focus to the input box on the selected
;   conversation
;
;
;   *Note: this only works with the conversations in the "Recent" panel

ConversationUp()
{
    Send, {AltDown}2{AltUp}
    Sleep, 100
    Send, {Up}{Enter}
    return
}

ConversationDown()
{
    Send, {AltDown}2{AltUp}
    Sleep, 100
    Send, {Down}{Enter}
    return
}


;Ctrl+Down move one conversation down
^Down::ConversationDown()

;Ctrl+Up move one conversation up
^Up::ConversationUp()

;Ctrl+Tab move one conversation down
^Tab::ConversationDown()

;Ctrl+Shift+Tab move one conversation up
^+Tab::ConversationUp()

将脚本另存为skype.ahk,如果您安装了 Autohotkey,请双击该文件以运行该脚本。然后您将能够在 Skype 窗口中使用以下快捷方式:

Ctrl+TabCtrl+移至下一个对话。

Ctrl+ Shift+TabCtrl+移至上一个对话。

答案4

方法 1:
Alt-Tab并旋转所有窗口(包括其他应用程序),直到到达您想要的对话窗口。

方法 2:
如果焦点窗口不是 Skype,请使用快捷键(参见下面的屏幕截图)将焦点移到主 Skype 窗口。
按 键Alt-2将对话选项卡调出,然后使用上下箭头键导航到您想要的对话。

热键选项

相关内容