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

Vil*_*lx- 20 skype keyboard-shortcuts

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

我在网上和 Skype 论坛上搜索过,但找不到任何东西。在工具 → 辅助功能菜单下有一个叫做“扩展键盘导航”的东西——但这似乎也是一个谜。

met*_*ida 13

对于 Mac OS X 用户:

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


小智 13

我只想将一件事添加到其他内容中。

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

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


小智 8

使用totesz的提示,我为Autohotkey制作了一个脚本。

如果您使用的是 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()
Run Code Online (Sandbox Code Playgroud)

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

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

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


mli*_*ner 5

不。

事实上,Skype 的网站上有一个功能请求


小智 1

我不太使用 Skype,但如果对话位于单独的选项卡中,例如某些 IM 客户端(例如 Pidgin),那么您也许可以尝试使用 CTRL + TAB(+ SHIFT 用于反向)在它们之间切换。

这也适用于大多数带有选项卡的浏览器。

  • 但在 Skype 中则不然。:) (3认同)