Sử dụng các mẹo của totesz Tôi đã tạo một kịch bản cho Autohotkey .
Nếu bạn đang ở trong windows, tôi khuyên bạn nên lấy Autohotkey. Sau đó, bạn có thể sử dụng tập lệnh đơn giản này:
#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()
Lưu tập lệnh dưới dạng skype.ahk, nếu bạn đã cài đặt Autohotkey, nhấp đúp vào tệp để chạy tập lệnh. Sau đó, bạn sẽ có thể sử dụng các phím tắt sau trong cửa sổ Skype:
Ctrl+ Tabhoặc Ctrl+ ↓để chuyển sang cuộc trò chuyện tiếp theo.
Ctrl+ Shift+ Tabhoặc Ctrl+ ↑để chuyển sang cuộc hội thoại trước.